You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
435 B
C#
21 lines
435 B
C#
namespace RoBot.Start.Dto.ConfigDto
|
|
{
|
|
public class ConfigSetting
|
|
{
|
|
/// <summary>
|
|
/// 群号
|
|
/// </summary>
|
|
public long? GroupQQ { get; set; }
|
|
|
|
/// <summary>
|
|
/// 充当机器人的QQ
|
|
/// </summary>
|
|
public long? BotQQ { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小小机器人QQ
|
|
/// </summary>
|
|
public long? XiaoXiaoQQ { get; set; }
|
|
}
|
|
}
|