mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-14 01:24:21 +01:00
9 lines
255 B
C#
Executable File
9 lines
255 B
C#
Executable File
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; }
|
|
}
|
|
} |