20 lines
541 B
C#
20 lines
541 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class CasdoorGetTokenResponse
|
|
{
|
|
public string access_token { get; set; }
|
|
public int expires_in { get; set; }
|
|
public string id_token { get; set; }
|
|
public string refresh_token { get; set; }
|
|
public string scope { get; set; }
|
|
public string token_type { get; set; }
|
|
public string error { get; set; }
|
|
public string error_description { get; set; }
|
|
}
|
|
|
|
}
|