SharpRSS/SharpRSS.API.Contracts/Payloads/ModifyUser.cs

12 lines
438 B
C#
Raw Normal View History

2023-10-08 00:46:42 +02:00
namespace SharpRSS.API.Contracts.Payloads
{
public class ModifyUser
{
public string UserName { 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;
}
}