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

9 lines
150 B
C#

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