Files
minecraft-modpack-updater/ModpackUpdater/IActionSetInfos.cs
2024-09-25 12:08:38 +02:00

11 lines
190 B
C#

namespace ModpackUpdater;
public interface IActionSetInfos
{
Version Version { get; set; }
public bool IsPublic { get; set; }
IEnumerable<InstallAction> Actions { get; }
}