Files
IM_NEW/IM.Commons/IntegrationEvents/FriendAddedEvent.cs
2026-05-09 17:06:30 +08:00

15 lines
480 B
C#

namespace IM.Commons.IntegrationEvents
{
public class FriendAddedEvent : BaseEvent
{
public Guid OwnerId { get; set; }
public string OwnerNickName { get; set; }
public string? OwnerAvatar { get; set; }
public Guid TargetId { get; set; }
public string TargetNickName { get; set; }
public string? TargetAvatar { get; set; }
public string? RemarkName { get; set; }
public string Status { get; set; }
}
}