18 lines
398 B
C#
18 lines
398 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Ragfair;
|
|
|
|
public class StorePlayerOfferTaxAmountRequestData
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public string? Id { get; set; }
|
|
|
|
[JsonPropertyName("tpl")]
|
|
public string? Tpl { get; set; }
|
|
|
|
[JsonPropertyName("count")]
|
|
public int? Count { get; set; }
|
|
|
|
[JsonPropertyName("fee")]
|
|
public double? Fee { get; set; }
|
|
} |