Initial commit

This commit is contained in:
shiyu
2025-05-18 20:48:20 +08:00
commit cde2c7b997
79 changed files with 5713 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace Foxel.Models.Response.Auth;
public class UserProfile
{
public int Id { get; set; }
public string UserName { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string? RoleName { get; set; }
}
public class AuthResponse
{
public string Token { get; set; } = string.Empty;
public UserProfile User { get; set; } = new();
}