Files
SPT-Server-Build/Core/Models/Eft/Ws/WsRagfairOfferSold.cs
T
2025-01-08 14:01:23 +00:00

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; }
}