Files
SPT-Server-Build/Libraries/Core/Models/Eft/Ws/WsRagfairOfferSold.cs
T
2025-01-19 17:45:48 +00:00

16 lines
355 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Ws;
public record WsRagfairOfferSold : WsNotificationEvent
{
[JsonPropertyName("offerId")]
public string? OfferId { get; set; }
[JsonPropertyName("count")]
public int? Count { get; set; }
[JsonPropertyName("handbookId")]
public string? HandbookId { get; set; }
}