10 lines
275 B
C#
10 lines
275 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;
|
|
} |