This commit is contained in:
2026-08-31 14:42:22 +08:00
72 changed files with 2479 additions and 168 deletions
@@ -8,8 +8,11 @@
public string GroupNickName { get; private set; }
public string? Avatar { get; private set; }
public string Role { get; private set; }
public string GroupName { get; private set; }
public string? GroupAvatar { get; private set; }
public GroupMemberJoinedEvent(Guid id, Guid userId, Guid groupId, string groupNickName, string? avatar, string role)
public GroupMemberJoinedEvent(Guid id, Guid userId, Guid groupId, string groupNickName, string? avatar, string role,
string groupName, string? groupAvatar)
{
Id = id;
UserId = userId;
@@ -17,6 +20,8 @@
GroupNickName = groupNickName;
Avatar = avatar;
Role = role;
GroupName = groupName;
GroupAvatar = groupAvatar;
}
}
}