16 lines
597 B
C#
16 lines
597 B
C#
namespace KLHZ.Trader.Core.Exchange.Models
|
|
{
|
|
public class Asset
|
|
{
|
|
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; }
|
|
}
|
|
} |