mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-10 07:54:20 +01:00
12 lines
435 B
C#
Executable File
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;
|
|
}
|
|
} |