Files
SPT-Server-Build/Core/Models/Eft/Ragfair/RemoveOfferRequestData.cs
T
2025-01-07 06:22:07 -05:00

12 lines
249 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; }
}