add modpack config to workspace (read-only via url)

This commit is contained in:
2024-10-03 11:28:34 +02:00
parent c07ba7fc28
commit a329d21feb
5 changed files with 41 additions and 4 deletions

View File

@@ -6,6 +6,8 @@ public interface IWorkspace
{
WorkspaceConfig Config { get; }
ModpackConfig? ModpackConfig { get; }
InstallInfos? InstallInfos { get; }
UpdateInfos? UpdateInfos { get; }

View File

@@ -9,4 +9,6 @@ public abstract class WorkspaceConfig
[JsonIgnore]
public abstract string DisplayText { get; }
public string? ModpackConfigUrl { get; set; }
}