Files
Govor/Govor.Core/Models/ChatGroup.cs
T
2025-06-16 22:31:45 +07:00

11 lines
307 B
C#

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