add support for version placeholder in download links

This commit is contained in:
2025-04-21 18:39:47 +02:00
parent d68dd09ad2
commit b11ad06287
5 changed files with 15 additions and 15 deletions

View File

@@ -6,19 +6,12 @@ namespace ModpackUpdater;
public class ModpackConfig
{
public bool Maintenance { get; set; }
public string Name { get; set; }
public string UpdateUrl { get; set; }
public string InstallUrl { get; set; }
public string UnleashApiUrl { get; set; }
public string UnleashInstanceId { get; set; }
public bool PreferDirectLinks { get; set; }
public string MinecraftVersion { get; set; }
[JsonConverter(typeof(StringEnumConverter))]