SharpRSS/SharpRSS.API.Contracts/DTO/User.cs

14 lines
430 B
C#
Raw Normal View History

2023-10-08 00:46:42 +02:00
using System;
namespace SharpRSS.API.Contracts.DTO
{
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;
}
}