12 lines
263 B
C#
12 lines
263 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Customization;
|
|
|
|
public class GetSuitsResponse
|
|
{
|
|
[JsonPropertyName("_id")]
|
|
public string? Id { get; set; }
|
|
|
|
[JsonPropertyName("suites")]
|
|
public List<string>? Suites { get; set; }
|
|
} |