增加搜索和添加好友功能

This commit is contained in:
heiye111
2026-05-24 20:11:54 +08:00
parent ac264e0c0a
commit cf25f3ed6a
3 changed files with 94 additions and 17 deletions

View File

@@ -26,5 +26,11 @@ namespace WebAppServer1.Models
public string Signature { get; set; } = string.Empty;
[Key("IsOnline")]
public bool IsOnline { get; set; }
[Key("AccessToken")]
public string AccessToken { get; set; } = string.Empty;
[Key("RefreshToken")]
public string RefreshToken { get; set; } = string.Empty;
[Key("Success")]
public bool Success { get; set; }
}
}