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

19 lines
396 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.334;
public static string GitPassword
{
get
{
return MainConfiguration.Instance.GitPassword;
}
}
}
}