mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
11 lines
307 B
C#
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();
|
|
} |