namespace JNPF.Systems.Entitys.Dto.System.InterfaceOauth
{
public class InterfaceOauthInput
{
///
/// id.
///
public string id { get; set; }
///
/// 应用id.
///
public string appId { get; set; }
///
/// 应用名称.
///
public string appName { get; set; }
///
/// 应用秘钥.
///
public string appSecret { get; set; }
///
/// 黑名单.
///
public string blackList { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
///
/// 状态.
///
public int? enabledMark { get; set; }
///
/// 使用期限.
///
//[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string usefulLife { get; set; }
///
/// 验证签名.
///
public int? verifySignature { get; set; }
///
/// 白名单.
///
public string whiteList { get; set; }
///
/// 说明.
///
public string description { get; set; }
}
}