some bugfixing & more
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
|
||||
namespace ModpackUpdater.Model;
|
||||
|
||||
public class InstallInfos
|
||||
{
|
||||
public List<InstallAction> Actions { get; private set; } = [];
|
||||
[JsonConverter(typeof(VersionConverter))]
|
||||
public Version Version { get; set; }
|
||||
public List<InstallAction> Actions { get; } = [];
|
||||
|
||||
public static InstallInfos Parse(string content)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user