namespace Govor.Core.Models; public class ChatGroup { public Guid Id { get; set; } public string Name { get; set; } public List InviteCode { get; set; } public bool IsChannel { get; set; } public bool IsPrivate { get; set; } public List Admins { get; set; } = new(); }