15 lines
353 B
C#
15 lines
353 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Ws;
|
|
|
|
public class WsRagfairOfferSold : WsNotificationEvent
|
|
{
|
|
[JsonPropertyName("offerId")]
|
|
public string? OfferId { get; set; }
|
|
|
|
[JsonPropertyName("count")]
|
|
public int? Count { get; set; }
|
|
|
|
[JsonPropertyName("handbookId")]
|
|
public string? HandbookId { get; set; }
|
|
} |