mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 16:36:15 +00:00
22 lines
533 B
C#
22 lines
533 B
C#
namespace CryptoExchange.Net.ComonObjects
|
|
{
|
|
/// <summary>
|
|
/// Balance data
|
|
/// </summary>
|
|
public class Balance: BaseComonObject
|
|
{
|
|
/// <summary>
|
|
/// The asset name
|
|
/// </summary>
|
|
public string Asset { get; set; } = string.Empty;
|
|
/// <summary>
|
|
/// Quantity available
|
|
/// </summary>
|
|
public decimal? Available { get; set; }
|
|
/// <summary>
|
|
/// Total quantity
|
|
/// </summary>
|
|
public decimal? Total { get; set; }
|
|
}
|
|
}
|