mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
10 lines
245 B
C#
10 lines
245 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace BTCPayServer.Client.Models;
|
|||
|
|
|||
|
public class StoreRatePreviewResult
|
|||
|
{
|
|||
|
public string CurrencyPair { get; set; }
|
|||
|
public decimal? Rate { get; set; }
|
|||
|
public List<string> Errors { get; set; }
|
|||
|
}
|