1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/IdentityServer/Models/Manage/NewUserModel.cs
2018-10-25 22:22:53 -07:00

26 lines
713 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Teknik.Utilities;
namespace Teknik.IdentityServer.Models.Manage
{
public class NewUserModel
{
public string Username { get; set; }
public string Password { get; set; }
public AccountType AccountType { get; set; }
public AccountStatus AccountStatus { get; set; }
public string RecoveryEmail { get; set; }
public bool RecoveryVerified { get; set; }
public string PGPPublicKey { get; set; }
public NewUserModel()
{
AccountType = AccountType.Basic;
AccountStatus = AccountStatus.Active;
}
}
}