Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Ws/WsRagfairOfferSold.cs
T
2025-03-07 13:16:43 +00:00

28 lines
443 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.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;
}
}