/* Options: Date: 2025-05-06 20:21:32 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //GlobalNamespace: ConsumerApi //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: GetRecentLocationRequest.* //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 ConsumerApi; namespace ConsumerApi { [Route("/location/GetRecentLocation", "GET")] public partial class GetRecentLocationRequest : IReturn, IGet { } public partial class GetRecentLocationResponse { public List RecentLocations { get; set; } = []; } public partial class RecentLocationDto { public string Name { get; set; } public string? Description { get; set; } public float Latitude { get; set; } public float Longitude { get; set; } public RecentLocationType LocationType { get; set; } public List? GoogleAddressComponents { get; set; } = []; } public enum RecentLocationType { Home, Current, Pin, Named, } }