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
@@ -0,0 +1,8 @@
namespace IM_API.Dtos
{
public class RegisterRequestDto
{
public string Username { get; set; }
public string Password { get; set; }
}
}