Files
minecraft-modpack-updater/ModpackUpdater/InstallOptionSet.cs
2025-06-16 15:34:15 +02:00

10 lines
240 B
C#

namespace ModpackUpdater;
public class InstallOptionSet
{
public string Id { get; set; }
public bool Multiselect { get; set; }
public string DefaultValue { get; set; }
public List<InstallOption> Options { get; } = [];
}