add(IFriendService):完善好友关系接口

This commit is contained in:
2025-11-04 16:09:43 +08:00
parent 76619c7785
commit e9feb6e036
9 changed files with 1239 additions and 595 deletions
@@ -0,0 +1,25 @@
namespace IM_API.Dtos
{
public class HandleFriendRequestDto
{
/// <summary>
/// 好友请求Id
/// </summary>
public int RequestId { get; set; }
/// <summary>
/// 处理操作
/// </summary>
public HandleFriendRequestAction Action { get; set; }
}
public enum HandleFriendRequestAction
{
/// <summary>
/// 同意
/// </summary>
Accept = 0,
/// <summary>
/// 拒绝
/// </summary>
Reject = 1
}
}