8 lines
215 B
C#
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; }
|
|
} |