changes
This commit is contained in:
12
Webshop.Application/DTOs/Auth/AuthResponseDto.cs
Normal file
12
Webshop.Application/DTOs/Auth/AuthResponseDto.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Webshop.Application.DTOs.Auth
|
||||
{
|
||||
public class AuthResponseDto
|
||||
{
|
||||
public bool IsAuthSuccessful { get; set; }
|
||||
public string ErrorMessage { get; set; } = string.Empty;
|
||||
public string Token { get; set; } = string.Empty;
|
||||
public string UserId { get; set; } = string.Empty;
|
||||
public string Email { get; set; } = string.Empty;
|
||||
public List<string> Roles { get; set; } = new List<string>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user