13 lines
265 B
C#
13 lines
265 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Ragfair;
|
|
|
|
public record RemoveOfferRequestData
|
|
{
|
|
[JsonPropertyName("Action")]
|
|
public string? Action { get; set; }
|
|
|
|
[JsonPropertyName("offerId")]
|
|
public string? OfferId { get; set; }
|
|
}
|