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

11 lines
347 B
C#
Executable File

namespace SharpRSS.API.Contracts.DTOs.Users
{
// Used for returning users in a list.
public class UserItem
{
public string Uid { get; set; } = string.Empty;
public string DisplayName { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public bool Active { get; set; }
}
}