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

11 lines
347 B
C#
Raw Permalink Normal View History

namespace SharpRSS.API.Contracts.DTOs.Users
2023-10-08 00:46:42 +02:00
{
// Used for returning users in a list.
public class UserItem
2023-10-08 00:46:42 +02:00
{
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; }
}
}