using System.Text.Json.Serialization; namespace EonaCat.DoxaApi.Models { // This file is part of the EonaCat project(s) which is released under the Apache License. // See the LICENSE file or go to https://EonaCat.com/license for full license details. public sealed class RequestBodyModel { [JsonPropertyName("required")] public bool Required { get; set; } [JsonPropertyName("contentType")] public string ContentType { get; set; } = "application/json"; [JsonPropertyName("schema")] public SchemaModel Schema { get; set; } = new(); [JsonPropertyName("example")] public string? Example { get; set; } } }