Initial commit
This commit is contained in:
9
MealPlan.Api/DTOs/Auth/UserInfoDto.cs
Normal file
9
MealPlan.Api/DTOs/Auth/UserInfoDto.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace MealPlan.Api.DTOs.Auth;
|
||||
|
||||
/// <summary>Current-user payload returned by <c>GET /api/auth/me</c>.</summary>
|
||||
public class UserInfoDto
|
||||
{
|
||||
public string Id { get; set; } = string.Empty;
|
||||
public string? UserName { get; set; }
|
||||
public string? Email { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user