19 lines
377 B
C#
19 lines
377 B
C#
/*
|
|
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
Licensed under the AGPL-3.0
|
|
*/
|
|
|
|
|
|
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.0;
|
|
public static string GitPassword = "**REMOVED**";
|
|
}
|
|
}
|