11 lines
352 B
C#
11 lines
352 B
C#
namespace CleanArchitecture.Application.Models.Identity
|
|
{
|
|
public class AuthResponse
|
|
{
|
|
public string UserId { get; set; } = string.Empty;
|
|
public string Username { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Token { get; set; } = string.Empty;
|
|
}
|
|
}
|