klhztrader/KLHZ.Trader.Core/Exchange/Models/Assets/Asset.cs

17 lines
649 B
C#

namespace KLHZ.Trader.Core.Exchange.Models.Assets
{
public class Asset
{
public long? TradeId { get; init; }
public decimal BlockedItems { get; init; }
public AssetType Type { get; init; }
public PositionType Position { get; init; }
public DateTime BoughtAt { get; init; }
public required string AccountId { get; init; }
public required string Figi { get; init; }
public required string Ticker { get; init; }
public decimal BoughtPrice { get; init; }
public decimal Count { get; init; }
public decimal CountLots { get; init; }
}
}