Files
minecraft-modpack-updater/ModpackUpdater.Manager/UpdateCheckOptions.cs

11 lines
264 B
C#

using ModpackUpdater.Model;
namespace ModpackUpdater.Manager;
public class UpdateCheckOptions
{
public bool IgnoreMaintenance { get; set; }
public bool AllowUpdaterAfterInstall { get; set; } = true;
public Side Side { get; set; } = Side.Client;
}