11 lines
270 B
C#
Raw Normal View History

2020-12-16 22:46:47 +08:00
namespace MineTec.ProManager
{
public class AppConsts
{
/// <summary>
/// Default pass phrase for SimpleStringCipher decrypt/encrypt operations
/// </summary>
public const string DefaultPassPhrase = "gsKxGZ012HLL3MI5";
}
}