36 lines
585 B
C#
36 lines
585 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Common;
|
|
|
|
namespace Core.Models.Eft.Trade;
|
|
|
|
public record ProcessBuyTradeRequestData : ProcessBaseTradeRequestData
|
|
{
|
|
[JsonPropertyName("item_id")]
|
|
public string? ItemId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("count")]
|
|
public int? Count
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("scheme_id")]
|
|
public int? SchemeId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("scheme_items")]
|
|
public List<IdWithCount>? SchemeItems
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|