11 lines
313 B
C#
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; }
|
|
} |