inotify/Inotify/ThridOauth/Entity/CredentialSetting.cs

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; }
}
}