Basf_EProject/EProject/BLL/AccessTokenModel.cs

26 lines
522 B
C#
Raw Normal View History

2024-06-24 10:28:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BLL.Common
{
public class AccessTokenModel
{
public string token_type { get; set; }
public string scope { get; set; }
public int expires_in { get; set; }
public int ext_expires_in { get; set; }
public string access_token { get; set; }
public string refresh_token { get; set; }
public string id_token { get; set; }
}
}