FirmTracker-Server/Models/CreateUserDto.cs

12 lines
312 B
C#
Raw Normal View History

namespace FirmTracker_Server.Models
{
public class CreateUserDto
{
public string Login { get; set; }
public string Password { get; set; }
public string Email { get; set; }
public string Role { get; set; }
public bool NewEncryption { get; set; } = true;
}
}