OpenAuthImplementStarted

This commit is contained in:
2024-07-26 17:17:39 +07:00
parent 65b924c174
commit d332cd0d96
12 changed files with 294 additions and 4 deletions

View File

@ -0,0 +1,10 @@
namespace Yuna.Website.Server.Model
{
public class UserBinding
{
public long Id { get; set; }
public long UserId { get; set; }
public string Code { get; set; } = null!;
public string AccessToken { get; set; } = null!;
}
}