19 lines
393 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
}
|