/* Options: Date: 2025-09-03 18:53:05 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetCurrentProfileRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.IO; using Infrastructure.Api.Interfaces.ServiceOperations; using Application.Interfaces; using Application.Interfaces.Resources; using Infrastructure.Api.Interfaces.ServiceOperations.Profile; namespace Application.Interfaces { public partial interface IHasGetOptions { string Embed { get; set; } } } namespace Application.Interfaces.Resources { public partial class CurrentProfile : Profile { public CurrentProfile() { Roles = new List{}; } public virtual bool IsAuthenticated { get; set; } public virtual List Roles { get; set; } } public partial interface IIdentifiableResource { string Id { get; set; } } public partial class PersonName { public virtual string FirstName { get; set; } public virtual string LastName { get; set; } } public partial class Profile : ProfileBasic { public virtual string DefaultOrganisationId { get; set; } } public partial class ProfileBasic : IIdentifiableResource { public virtual PersonName Name { get; set; } public virtual string DisplayName { get; set; } public virtual string EmailAddress { get; set; } public virtual string PhoneNumber { get; set; } public virtual string Timezone { get; set; } public virtual string Id { get; set; } } } namespace Infrastructure.Api.Interfaces.ServiceOperations { public partial class GetOperationUnTenanted : IHasGetOptions, IGet { public virtual string Embed { get; set; } } } namespace Infrastructure.Api.Interfaces.ServiceOperations.Profile { [Route("/profile/current", "GET")] public partial class GetCurrentProfileRequest : GetOperationUnTenanted, IReturn { } public partial class GetCurrentProfileResponse { public virtual ResponseStatus ResponseStatus { get; set; } public virtual CurrentProfile Profile { get; set; } } }