19 lines
396 B
C#
19 lines
396 B
C#
using Api.Framework.SDK;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FissionSend
|
|
{
|
|
[Config(Name = "插件-裂变辅助发送-配置")]
|
|
public class Config
|
|
{
|
|
/// <summary>
|
|
/// 发送的群
|
|
/// </summary>
|
|
public string SendGroups { get; set; } = string.Empty;
|
|
}
|
|
}
|