Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Profile/MessageContentRagfair.cs
T
2025-06-25 15:16:38 +01:00

19 lines
452 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Eft.Profile;
public record MessageContentRagfair
{
[JsonExtensionData]
public Dictionary<string, object>? ExtensionData { get; set; }
[JsonPropertyName("offerId")]
public string? OfferId { get; set; }
[JsonPropertyName("count")]
public double? Count { get; set; }
[JsonPropertyName("handbookId")]
public string? HandbookId { get; set; }
}