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

12 lines
345 B
C#
Raw Permalink Normal View History

2023-10-08 00:46:42 +02:00
using System;
namespace SharpRSS.API.Contracts.DTOs.Groups
2023-10-08 00:46:42 +02:00
{
public class Group
{
public string Gid { get; set; } = Guid.NewGuid().ToString();
2023-10-08 00:46:42 +02:00
public string DisplayName { get; set; } = string.Empty;
public bool Administrator { get; set; }
public DateTime DateCreated { get; set; } = DateTime.Now;
}
}