Add project files.
This commit is contained in:
10
DTOs/LoginResponse.cs
Normal file
10
DTOs/LoginResponse.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user