/* Options: Date: 2025-12-06 07:01:26 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //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: PlaceRemoveBarTypeRequest.* //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 BusinessApi; namespace BusinessApi { [Route("/place/remove_bar_type", "DELETE")] public partial class PlaceRemoveBarTypeRequest : IReturn, IDelete, IHasPlaceId { public long PlaceId { get; set; } public string BarTypeSlug { get; set; } } public partial class PlaceRemoveBarTypeResponse { public string BarTypeSlug { get; set; } } public partial interface IHasPlaceId { long PlaceId { get; set; } } }