using System.Text.Json.Serialization; namespace Centron.Api.docuFORM.Models.Swagger; /// Technical specifications of the device. public class DeviceFeatureTecSpecs { [JsonPropertyName("copiesByDriver")] public int? CopiesByDriver { get; set; } [JsonPropertyName("externalPSGeneration")] public int? ExternalPsGeneration { get; set; } [JsonPropertyName("feedResolution")] public int? FeedResolution { get; set; } [JsonPropertyName("paperTrayFormatIds")] public string? PaperTrayFormatIds { get; set; } [JsonPropertyName("securePinPrinting")] public string? SecurePinPrinting { get; set; } [JsonPropertyName("supportedPDL")] public string? SupportedPdl { get; set; } [JsonPropertyName("xFeedResolution")] public int? XFeedResolution { get; set; } }