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

9 lines
145 B
C#

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