添加项目文件。

This commit is contained in:
2026-05-09 17:06:30 +08:00
parent c60f5fe117
commit 720ef957d4
378 changed files with 14843 additions and 0 deletions
@@ -0,0 +1,30 @@
namespace IM.Commons.IntegrationEvents
{
public class GroupInvitationCreateEvent : BaseEvent
{
public Guid InvitationId { get; private set; }
public Guid UserId { get; private set; }
public string UserNickName { get; private set; }
public string? UserAvatar { get; private set; }
public Guid GroupId { get; private set; }
public string GroupName { get; private set; }
public string GroupAvatar { get; private set; }
public Guid OperatorId { get; private set; }
public string OperatorName { get; private set; }
public string OperatorAvatar { get; private set; }
public GroupInvitationCreateEvent(Guid invitationId, Guid userId, string userNickName, string? userAvatar, Guid groupId, string groupName, string groupAvatar, Guid operatorId, string operatorName, string operatorAvatar)
{
InvitationId = invitationId;
UserId = userId;
UserNickName = userNickName;
UserAvatar = userAvatar;
GroupId = groupId;
GroupName = groupName;
GroupAvatar = groupAvatar;
OperatorId = operatorId;
OperatorName = operatorName;
OperatorAvatar = operatorAvatar;
}
}
}