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; } } }