using System; namespace SharpRSS.API.Contracts.DTO { public class Group { public string Gid { get; set; } = string.Empty; public string DisplayName { get; set; } = string.Empty; public bool Administrator { get; set; } public DateTime DateCreated { get; set; } = DateTime.Now; } }