littleshop/DTOs/AuthResponseDto.cs
2025-08-20 13:20:19 +01:00

8 lines
215 B
C#

namespace LittleShop.DTOs;
public class AuthResponseDto
{
public string Token { get; set; } = string.Empty;
public string Username { get; set; } = string.Empty;
public DateTime ExpiresAt { get; set; }
}