using System; using System.ComponentModel.DataAnnotations; namespace Znyc.Recruitment.Admin.Commons.Options { /// /// 缓存中可用的应用 /// [Serializable] public class AllowCacheApp { /// /// 设置或获取 ID /// [MaxLength(50)] public int Id { get; set; } /// /// 设置或获取 应用Id /// [MaxLength(50)] public string AppId { get; set; } /// /// 设置或获取 应用密钥 /// [MaxLength(50)] public string AppSecret { get; set; } /// /// 设置或获取 消息加密密钥 /// [MaxLength(256)] public string EncodingAESKey { get; set; } /// /// 设置或获取 请求url /// [MaxLength(256)] public string RequestUrl { get; set; } /// /// 设置或获取 token /// [MaxLength(256)] public string Token { get; set; } /// /// 设置或获取 是否开启消息加解密 /// public bool? IsOpenAEKey { get; set; } } }