9 lines
145 B
C#
9 lines
145 B
C#
namespace ModpackUpdater;
|
|
|
|
public interface IActionSetInfos
|
|
{
|
|
Version Version { get; }
|
|
|
|
IEnumerable<InstallAction> Actions { get; }
|
|
}
|