11 lines
190 B
C#
11 lines
190 B
C#
namespace ModpackUpdater;
|
|
|
|
public interface IActionSetInfos
|
|
{
|
|
Version Version { get; set; }
|
|
|
|
public bool IsPublic { get; set; }
|
|
|
|
IEnumerable<InstallAction> Actions { get; }
|
|
}
|