12 lines
294 B
C#
12 lines
294 B
C#
using ModpackUpdater.Manager;
|
|
|
|
namespace ModpackUpdater;
|
|
|
|
public class UpdateCheckOptionsAdv : UpdateCheckOptions
|
|
{
|
|
public string ProfileFolder { get; set; }
|
|
public string ModpackConfig { get; set; }
|
|
public bool NoUpdate { get; set; }
|
|
public string ExtrasKey { get; set; }
|
|
}
|