sso 单点登录

This commit is contained in:
jackchenyang
2024-06-24 10:28:40 +08:00
parent 34ca1fe4d7
commit 0c5cd77c5b
20 changed files with 422 additions and 11045 deletions
+25
View File
@@ -0,0 +1,25 @@
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; }
}
}