mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
2cb6a93060
Introduces repositories, validators, and integration tests for private chats. Refactors group-related models to support invitations and memberships, updates group repository interfaces and implementations, and enhances message service logic to handle private chat creation and retrieval. Also registers new services and validators in DI, and updates related tests.
14 lines
479 B
C#
14 lines
479 B
C#
namespace Govor.Core.Models;
|
|
|
|
public class ChatGroup
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public Guid ImageId { get; set; }
|
|
public bool IsChannel { get; set; }
|
|
public bool IsPrivate { get; set; }
|
|
public List<GroupAdmins> Admins { get; set; } = new();
|
|
public List<GroupMembership> Members { get; set; } = new();
|
|
public List<GroupInvitation> InviteCodes { get; set; } = new();
|
|
} |