11 lines
269 B
C#
11 lines
269 B
C#
namespace Marco.Pms.Model.Utilities
|
|
{
|
|
public class AuthResponse
|
|
{
|
|
public string? AccessToken { get; set; }
|
|
public string? RefreshToken { get; set; }
|
|
public int ExpiresIn { get; set; }
|
|
public object? User { get; set; }
|
|
}
|
|
}
|