ForgeCore/Assembly/ASMInfo.cs
2020-03-10 11:47:20 -07:00

19 lines
393 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Bot.Assemble
{
public class ASMInfo
{
public static string BotName = "ZBotCore";
public static double BotVer = 5.33;
public static string GitPassword
{
get
{
return MainConfiguration.Load().GitPassword;
}
}
}
}