/* Options: Date: 2025-08-04 03:29:09 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: AddAdminUser.* //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 Portal.ServiceDto; namespace Portal.ServiceDto { [Route("/adminuser", "POST")] public partial class AddAdminUser : IReturn { public virtual string Email { get; set; } public virtual string Password { get; set; } public virtual string DisplayName { get; set; } public virtual string OrganizationUnit { get; set; } public virtual string Position { get; set; } public virtual int MobilePhoneNumberCountryCodeId { get; set; } public virtual string MobilePhoneNumber { get; set; } public virtual bool IsResetPassword { get; set; } } public partial class AddUserResponse : ModifyEntityResponse { public virtual bool IsConfirmationEmailSent { get; set; } public virtual bool IsResetPasswordEmailSent { get; set; } } public partial class ModifyEntityResponse : ResponseBase { public virtual int Id { get; set; } } }