namespace IOL.GreatOffice.Api.Endpoints.Internal.Account;
///
/// Payload for updating an account.
///
public class UpdatePayload
{
///
/// Username to set on the logged on user's account.
///
public string Username { get; set; }
///
/// Password to set on the logged on user's account.
///
public string Password { get; set; }
}