12 lines
261 B
C#
12 lines
261 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; }
|
|
} |