using System.Text.Json.Serialization; namespace Centron.Api.docuFORM.Models.Swagger; public class JobCreatePaperInfo { [JsonPropertyName("paperTray")] public int? PaperTray { get; set; } [JsonPropertyName("windowsPaperSize")] public int? WindowsPaperSize { get; set; } [JsonPropertyName("paperWidth")] public int? PaperWidth { get; set; } [JsonPropertyName("paperHeight")] public int? PaperHeight { get; set; } [JsonPropertyName("pagesSimplexBw")] public int PagesSimplexBw { get; set; } [JsonPropertyName("pagesDuplexBw")] public int PagesDuplexBw { get; set; } [JsonPropertyName("pagesSimplexColor")] public int PagesSimplexColor { get; set; } [JsonPropertyName("pagesDuplexColor")] public int PagesDuplexColor { get; set; } }