namespace IM.Commons.IntegrationEvents
{
public class FriendRequestStateUpdateEvent : BaseEvent
{
///
/// 申请人
///
public Guid OwnerId { get; set; }
///
/// 被申请人
///
public Guid TargetId { get; set; }
///
/// 申请附言
///
public string Description { get; set; }
///
/// 申请状态(0:待通过,1:拒绝,2:同意,3:拉黑)
///
public string State { get; set; }
///
/// 备注
///
public string? RemarkName { get; set; }
}
}