using Api.Framework.SDK; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 监听违规 { [Config(Name = "插件-淘宝返利-配置")] public class Config { /// /// 是否开启昵称关键词 /// public bool is_nickkey { get; set; } = false; /// /// 昵称关键词 /// public string nickkey { get; set; } = string.Empty; /// /// 是否开启消息关键词 /// public bool is_messkey { get; set; } = false; /// /// 消息关键词 /// public string messkey { get; set; } = string.Empty; /// /// 发送的是否为二维码 /// public bool is_qrcord { get; set; } = false; /// /// 是否发送的卡片 /// public bool is_card { get; set; } = false; /// /// 是否发送的连接 /// public bool is_link { get; set; } = false; /// /// 是否消息行数 /// public bool is_messrows { get; set; } = false; /// /// 消息行数 /// public int messrows { get; set; } = 5; /// /// 是否消息字数 /// public bool is_messwords { get; set; } = false; /// /// 消息字数 /// public int messwords { get; set; } = 60; /// /// 是否踢出用户提示语 /// public bool is_expelmess { get; set; } /// /// 踢出用户提示语 /// public string expelmess { get; set; } } }