mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-14 01:24:21 +01:00
11 lines
347 B
C#
Executable File
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; }
|
|
}
|
|
} |