18 lines
746 B
C#
18 lines
746 B
C#
namespace KLHZ.Trader.Core.Exchange.Models.AssetsAccounting
|
|
{
|
|
public class Asset : LockableExchangeObject
|
|
{
|
|
public Guid AssetId { get; init; } = Guid.NewGuid();
|
|
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; }
|
|
}
|
|
} |