mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-14 01:24:21 +01:00
14 lines
437 B
C#
Executable File
14 lines
437 B
C#
Executable File
using System;
|
|
|
|
namespace SharpRSS.API.Contracts.DTOs.Users
|
|
{
|
|
public class User
|
|
{
|
|
public string Uid { get; set; } = string.Empty;
|
|
public string DisplayName { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Gid { get; set; } = string.Empty;
|
|
public bool Active { get; set; }
|
|
public DateTime DateCreated { get; set; } = DateTime.Now;
|
|
}
|
|
} |