17 lines
405 B
C#
17 lines
405 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace EonaCat.DoxaApi.Models
|
|
{
|
|
public sealed class ResponseModel
|
|
{
|
|
[JsonPropertyName("statusCode")]
|
|
public string StatusCode { get; set; } = "200";
|
|
|
|
[JsonPropertyName("description")]
|
|
public string? Description { get; set; }
|
|
|
|
[JsonPropertyName("schema")]
|
|
public SchemaModel? Schema { get; set; }
|
|
}
|
|
}
|