using System.Text.Json.Serialization; namespace Centron.Api.docuFORM.Models.Swagger; public class DeviceSummaryCounterElement { /// Type discriminator — value is 2 for counter elements. [JsonPropertyName("type")] public int? Type { get; set; } [JsonPropertyName("title")] public string? Title { get; set; } [JsonPropertyName("value")] public string? Value { get; set; } }