36 lines
782 B
C#
36 lines
782 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|