add(接口):添加授权、用户、好友关系服务接口

This commit is contained in:
2025-10-28 16:52:59 +08:00
parent d85e906b39
commit c67c666135
20 changed files with 967 additions and 8 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace IM_API.Dtos
{
public class LoginDto
{
public int Id { get; set; }
public string Token { get; set; }
public string RefreshToken { get; set; }
}
}