old_flsystem/应用/MessageForwarder/Config.cs

36 lines
782 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
using Api.Framework.Enums;
using Api.Framework.SDK;
using System.Collections.Generic;
using System.ComponentModel;
using UI.Framework.Entitys;
namespace MessageForwarder
{
[Config(Name = "插件-消息转发-配置")]
public class Config
{
/// <summary>
/// 群Id
/// </summary>
public string ClusterId { get; set; }
/// <summary>
/// 监听账号
/// </summary>
public string ListeningAccount { get; set; }
/// <summary>
///
/// </summary>
public string Data { get; set; }
public Config()
{
this.ClusterId = string.Empty;
this.ListeningAccount = string.Empty;
this.Data = string.Empty;
}
}
}