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

9 lines
255 B
C#

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