/* Options: Date: 2025-12-06 06:58:57 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakePartial: True //MakeVirtual: False //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: PlaceExcludeAddUploadRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using BackofficeApi; namespace BackofficeApi { [Route("/place_exclude/add", "POST")] public partial class PlaceExcludeAddUploadRequest : IReturn, IPost { public List PlacesToExclude { get; set; } = []; } public partial class PlaceExcludeAddUploadResponse { public int PlacesAddedToExclude { get; set; } } public partial class PlaceExcludeDto { public string Country { get; set; } public string OrganizationNumber { get; set; } public string Note { get; set; } } }