15 lines
323 B
C#
15 lines
323 B
C#
namespace Inotify.ThridOauth.Entity
|
|
{
|
|
public class CredentialSetting
|
|
{
|
|
/// <summary>
|
|
/// AppKey
|
|
/// </summary>
|
|
public string ClientId { get; set; }
|
|
|
|
/// <summary>
|
|
/// AppSecret
|
|
/// </summary>
|
|
public string ClientSecret { get; set; }
|
|
}
|
|
} |