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

12 lines
435 B
C#
Raw Permalink Normal View History

namespace SharpRSS.API.Contracts.DTOs.Users
2023-10-08 00:46:42 +02:00
{
public class InsertUser
2023-10-08 00:46:42 +02:00
{
public string Uid { get; set; } = string.Empty;
2023-10-08 00:46:42 +02:00
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;
}
}