SharpRSS/SharpRSS.API.Contracts/DTOs/Groups/InsertGroup.cs
2024-06-16 13:43:30 +02:00

9 lines
257 B
C#
Executable File

namespace SharpRSS.API.Contracts.DTOs.Groups
{
public class InsertGroup
{
public string Gid { get; set; } = string.Empty;
public string DisplayName { get; set; } = string.Empty;
public bool Administrator { get; set; }
}
}