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.
19 lines
388 B
C#
19 lines
388 B
C#
using Lagrange.Core;
|
|
using Lagrange.Core.Common;
|
|
using RoBot.Start.Dto.ConfigDto;
|
|
using RoBot.Start.Keystore;
|
|
|
|
namespace RoBot.Start.Global
|
|
{
|
|
public class GlobalConfig
|
|
{
|
|
public static ConfigSetting ConfigSetting;
|
|
|
|
public static BotDeviceInfo BotDeviceInfo;
|
|
|
|
public static KeystoreInfo KeystoreInfo;
|
|
|
|
public static BotContext BotContext;
|
|
}
|
|
}
|