-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
56 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,20 @@ | ||
using System; | ||
using System.Runtime.Serialization; | ||
namespace NewLife.Cube.Web.Models; | ||
|
||
namespace NewLife.Cube.Web.Models | ||
/// <summary>Sso令牌模型</summary> | ||
public class SsoTokenModel | ||
{ | ||
/// <summary>Sso令牌模型</summary> | ||
public class SsoTokenModel | ||
{ | ||
/// <summary>应用标识</summary> | ||
public String client_id { get; set; } | ||
/// <summary>应用标识</summary> | ||
public String client_id { get; set; } | ||
|
||
/// <summary>应用密钥</summary> | ||
public String client_secret { get; set; } | ||
/// <summary>应用密钥</summary> | ||
public String client_secret { get; set; } | ||
|
||
/// <summary>用户名。可以是设备编码等唯一使用者标识</summary> | ||
public String UserName { get; set; } | ||
/// <summary>用户名。可以是设备编码等唯一使用者标识</summary> | ||
public String UserName { get; set; } | ||
|
||
/// <summary>密码</summary> | ||
public String Password { get; set; } | ||
/// <summary>密码</summary> | ||
public String Password { get; set; } | ||
|
||
/// <summary>授权类型</summary> | ||
public String grant_type { get; set; } | ||
} | ||
/// <summary>授权类型</summary> | ||
public String grant_type { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters