Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Ws/WsRagfairOfferSold.cs
T
2025-06-18 17:09:20 +00:00

16 lines
371 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; }
}