28 lines
415 B
C#
28 lines
415 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Location;
|
|
|
|
public record GetLocationRequestData
|
|
{
|
|
[JsonPropertyName("crc")]
|
|
public int? Crc
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("locationId")]
|
|
public string? LocationId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("variantId")]
|
|
public int? VariantId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|