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
{
///
/// 群Id
///
public string ClusterId { get; set; }
///
/// 监听账号
///
public string ListeningAccount { get; set; }
///
///
///
public string Data { get; set; }
public Config()
{
this.ClusterId = string.Empty;
this.ListeningAccount = string.Empty;
this.Data = string.Empty;
}
}
}