mirror of
https://github.com/DaKerboul/perun.git
synced 2026-08-09 22:25:40 +02:00
11 lines
345 B
C#
11 lines
345 B
C#
// This class gathers all global variable
|
|
using MySql.Data.MySqlClient;
|
|
|
|
internal class Globals
|
|
{
|
|
public static string strPerunVersion = "DEBUG"; // Helper for pulling version definition
|
|
public static string[] arrLogHistory = new string[10]; // Log history for GUI
|
|
public static string strPerunTitleText = "";
|
|
}
|
|
|