10 lines
306 B
C#
10 lines
306 B
C#
namespace LogisticsApp.Server.DTOs
|
|
{
|
|
public class LoginResponse
|
|
{
|
|
public string Token { get; set; } = string.Empty;
|
|
public string Username { get; set; } = string.Empty;
|
|
public string Role { get; set; } = string.Empty;
|
|
public DateTime Expires { get; set; }
|
|
}
|
|
} |