namespace ModpackUpdater.Model; public class InstallAction { public bool IsZip { get; set; } public string ZipPath { get; set; } public string DestPath { get; set; } public string DownloadUrl { get; set; } public Side Side { get; set; } = Side.Both; public bool IsExtra { get; set; } }