SharpRSS/SharpRSS.API/Models/DbGroup.cs

14 lines
399 B
C#
Raw Permalink Normal View History

using System;
using Newtonsoft.Json;
using SharpRSS.API.Contracts.DTOs.Groups;
2023-10-08 00:46:42 +02:00
namespace SharpRSS.API.Models
{
internal class DbGroup
2023-10-08 00:46:42 +02:00
{
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;
2023-10-08 00:46:42 +02:00
}
}