15 lines
480 B
C#
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; }
|
|
}
|
|
}
|