SharpRSS/SharpRSS.API.Contracts/DTOs/Groups/Group.cs

12 lines
345 B
C#

using System;
namespace SharpRSS.API.Contracts.DTOs.Groups
{
public class Group
{
public string Gid { get; set; } = Guid.NewGuid().ToString();
public string DisplayName { get; set; } = string.Empty;
public bool Administrator { get; set; }
public DateTime DateCreated { get; set; } = DateTime.Now;
}
}