blob: dc73e68442cfc66381c1578f38c8a01ff4ba89b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
namespace IOL.GreatOffice.Api.Endpoints.Internal.Account;
/// <summary>
/// Payload for creating new user accounts.
/// </summary>
public class CreateAccountPayload
{
/// <summary>
/// Username for the new account.
/// </summary>
public string Username { get; set; }
/// <summary>
/// Password for the new account.
/// </summary>
public string Password { get; set; }
}
|