mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-10 07:54:20 +01:00
9 lines
257 B
C#
9 lines
257 B
C#
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; }
|
|
}
|
|
} |