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

15 lines
350 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; }
}