/* Options: Date: 2026-06-22 18:34:49 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://authr.redhotpie.com.au //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: AccountLookupRequest.* //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 RHPAuth.ServiceModel; namespace RHPAuth.ServiceModel { [Route("/User/AccountLookup")] public partial class AccountLookupRequest : IReturn> { public virtual string? Username { get; set; } public virtual string? Password { get; set; } } }