aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Endpoints/Internal/Account/CreateAccountPayload.cs
blob: 1161af3e6f6aeb8efda04232efe23323c4e126cb (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; }
}