10 lines
277 B
C#
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; }
|
|
}
|