SharpRSS/SharpRSS.API.Contracts/DTOs/Users/InsertUser.cs

12 lines
435 B
C#

namespace SharpRSS.API.Contracts.DTOs.Users
{
public class InsertUser
{
public string Uid { get; set; } = string.Empty;
public string DisplayName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string GroupId { get; set; } = string.Empty;
public bool Active { get; set; } = true;
}
}