Files
SPT-Server-Build/Core/Models/Eft/Ragfair/RemoveOfferRequestData.cs
T
2025-01-08 13:27:58 +00:00

12 lines
263 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Ragfair;
public class RemoveOfferRequestData
{
[JsonPropertyName("Action")]
public string? Action { get; set; }
[JsonPropertyName("offerId")]
public string? OfferId { get; set; }
}