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

9 lines
255 B
C#
Raw Permalink Normal View History

namespace SharpRSS.API.Contracts.DTOs.Groups
2023-10-08 00:46:42 +02:00
{
public class GroupItem
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; }
}
}