blob: 88a3237143ec31510c65b8b199287f3c3f7eefa5 (
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 updating an account.
/// </summary>
public class UpdatePayload
{
/// <summary>
/// Username to set on the logged on user's account.
/// </summary>
public string Username { get; set; }
/// <summary>
/// Password to set on the logged on user's account.
/// </summary>
public string Password { get; set; }
}
|