From 2a389ae5d48009a2456557691a510c0989a05099 Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Thu, 3 Oct 2024 11:31:27 +0200 Subject: [PATCH] make ModpackConfig.ConfigUrl private --- ModpackUpdater/ModpackConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ModpackUpdater/ModpackConfig.cs b/ModpackUpdater/ModpackConfig.cs index 781b995..43914ec 100644 --- a/ModpackUpdater/ModpackConfig.cs +++ b/ModpackUpdater/ModpackConfig.cs @@ -25,7 +25,7 @@ public class ModpackConfig public ModLoader ModLoader { get; set; } [JsonIgnore] - public string ConfigUrl { get; set; } + public string ConfigUrl { get; private set; } public static ModpackConfig LoadFromUrl(string url) {