finalize model for option sets

This commit is contained in:
Pascal
2025-06-27 09:29:57 +02:00
parent f5596ab0ba
commit d0e3d2fa61
7 changed files with 46 additions and 12 deletions

View File

@@ -1,10 +1,7 @@
namespace ModpackUpdater;
public interface IActionSetInfos
public interface IActionSetInfos : IActionSet
{
Version Version { get; set; }
public bool IsPublic { get; set; }
IEnumerable<InstallAction> Actions { get; }
bool IsPublic { get; set; }
}