/* Options: Date: 2025-12-06 08:03:16 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: MallGetOtherServicesRequest.* //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("/mall/other-services", "GET")] public partial class MallGetOtherServicesRequest : IReturn, IGet, IHasMallId { public long MallId { get; set; } } public partial class MallGetOtherServicesResponse { public List OtherServices { get; set; } = []; } public partial class MallOtherServiceDto { public long Id { get; set; } public string ServiceName { get; set; } public string Floor { get; set; } } public partial interface IHasMallId { long MallId { get; set; } } }