Files
SPT-Server-Build/Core/Models/Eft/Ws/WsRagfairOfferSold.cs
T
2025-01-07 06:04:21 -05:00

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