Files
minecraft-modpack-updater/ModpackUpdater.Model/InstallAction.cs
Schedel Pascal f1185c242c Revert "completely revert extra property"
This reverts commit 1746bb6442.
2024-06-21 06:45:33 +02:00

11 lines
313 B
C#

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; }
}