using System.Text.Json.Serialization; namespace Centron.Api.docuFORM.Models.Swagger; public class CustomerRights { [JsonPropertyName("dashboard")] public bool? Dashboard { get; set; } [JsonPropertyName("reports")] public bool? Reports { get; set; } [JsonPropertyName("eshop")] public bool? Eshop { get; set; } [JsonPropertyName("customerThresholds")] public bool? CustomerThresholds { get; set; } [JsonPropertyName("customerAlerts")] public bool? CustomerAlerts { get; set; } [JsonPropertyName("deletePrinters")] public bool? DeletePrinters { get; set; } [JsonPropertyName("contractManagement")] public bool? ContractManagement { get; set; } [JsonPropertyName("deployment")] public bool? Deployment { get; set; } }