15 lines
338 B
C#
15 lines
338 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Trade;
|
|
|
|
public class ProcessBaseTradeRequestData
|
|
{
|
|
[JsonPropertyName("Action")]
|
|
public string? Action { get; set; }
|
|
|
|
[JsonPropertyName("type")]
|
|
public string? Type { get; set; }
|
|
|
|
[JsonPropertyName("tid")]
|
|
public string? TransactionId { get; set; }
|
|
} |