Files
SPT-Server-Build/Libraries/Core/Models/Eft/Trade/ProcessBuyTradeRequestData.cs
T
TetrisGG 28a434a622 Update Models Comments
Changed Comments to adhere to xml standard in all Models.
Added missing comments.
2025-03-04 22:38:11 +01:00

39 lines
702 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;
}
/// <summary>
/// Id of stack to take money from, is money tpl when Action is `SptInsure`
/// </summary>
[JsonPropertyName("scheme_items")]
public List<IdWithCount>? SchemeItems
{
get;
set;
}
}