Files
DailyMeals/MealPlan.Api/DTOs/Auth/UserInfoDto.cs
2026-06-04 06:24:56 +02:00

10 lines
277 B
C#

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; }
}