old_flsystem/应用/监听违规/Config.cs

74 lines
1.9 KiB
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
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
{
/// <summary>
/// 是否开启昵称关键词
/// </summary>
public bool is_nickkey { get; set; } = false;
/// <summary>
/// 昵称关键词
/// </summary>
public string nickkey { get; set; } = string.Empty;
/// <summary>
/// 是否开启消息关键词
/// </summary>
public bool is_messkey { get; set; } = false;
/// <summary>
/// 消息关键词
/// </summary>
public string messkey { get; set; } = string.Empty;
/// <summary>
/// 发送的是否为二维码
/// </summary>
public bool is_qrcord { get; set; } = false;
/// <summary>
/// 是否发送的卡片
/// </summary>
public bool is_card { get; set; } = false;
/// <summary>
/// 是否发送的连接
/// </summary>
public bool is_link { get; set; } = false;
/// <summary>
/// 是否消息行数
/// </summary>
public bool is_messrows { get; set; } = false;
/// <summary>
/// 消息行数
/// </summary>
public int messrows { get; set; } = 5;
/// <summary>
/// 是否消息字数
/// </summary>
public bool is_messwords { get; set; } = false;
/// <summary>
/// 消息字数
/// </summary>
public int messwords { get; set; } = 60;
/// <summary>
/// 是否踢出用户提示语
/// </summary>
public bool is_expelmess { get; set; }
/// <summary>
/// 踢出用户提示语
/// </summary>
public string expelmess { get; set; }
}
}