mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-05 18:20:30 +01:00
9 lines
191 B
C#
9 lines
191 B
C#
|
namespace BTCPayServer.Client.Models;
|
||
|
|
||
|
public class TradeRequestData
|
||
|
{
|
||
|
public string FromAsset { set; get; }
|
||
|
public string ToAsset { set; get; }
|
||
|
public string Qty { set; get; }
|
||
|
}
|