using System.Text.Json.Serialization; namespace Centron.Api.docuFORM.Models.Swagger; public class Item : ItemCreateProperties { [JsonPropertyName("id")] public int Id { get; set; } [JsonPropertyName("colorant")] public string? Colorant { get; set; } [JsonPropertyName("supplyType")] public int? SupplyType { get; set; } [JsonPropertyName("isColorMarker")] public bool? IsColorMarker { get; set; } }