YZ_BSF/HJGL/BLL/Common/AccessTokenModel.cs

26 lines
522 B
C#
Raw Permalink Normal View History

2026-02-10 15:50:55 +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; }
}
}