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

9 lines
257 B
C#
Raw Normal View History

namespace SharpRSS.API.Contracts.DTOs.Groups
2023-10-08 00:46:42 +02:00
{
public class InsertGroup
2023-10-08 00:46:42 +02:00
{
public string Gid { get; set; } = string.Empty;
public string DisplayName { get; set; } = string.Empty;
public bool Administrator { get; set; }
}
}