using System.Text.Json.Serialization; namespace Centron.Api.docuFORM.Models.Swagger; public class DeviceSummarySupplyElement { /// Type discriminator — value is 1 for supply elements. [JsonPropertyName("type")] public int? Type { get; set; } [JsonPropertyName("hex")] public string? Hex { get; set; } [JsonPropertyName("title")] public string? Title { get; set; } [JsonPropertyName("subtitle")] public string? Subtitle { get; set; } [JsonPropertyName("warning")] public bool? Warning { get; set; } [JsonPropertyName("value")] public string? Value { get; set; } }