mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-10 07:54:20 +01:00
12 lines
345 B
C#
Executable File
12 lines
345 B
C#
Executable File
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;
|
|
}
|
|
} |