SharpRSS/SharpRSS.API.Contracts/DTOs/Users/InsertUser.cs
2024-06-16 13:43:30 +02:00

12 lines
435 B
C#
Executable File

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;
}
}