Files
SPT-Server-Build/Libraries/Core/Models/Eft/Ws/WsRagfairOfferSold.cs
T
2025-02-07 19:36:17 +00:00

28 lines
427 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;
}
}