namespace IOL.GreatOffice.Api.Endpoints.Internal.Account; /// /// Payload for creating new user accounts. /// public class CreateAccountPayload { /// /// Username for the new account. /// public string Username { get; set; } /// /// Password for the new account. /// public string Password { get; set; } }