19 lines
545 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.Text.Json;
using System.Text.Json.Serialization;
2022-05-18 22:12:43 -05:00
namespace CFUtils.Serialization.Modpack
{
public struct Manifest
{
[JsonIgnore]
public Game game;
public string ManifestType { get; set; }
public int ManifestVersion { get; set; }
public string Name { get; set; }
public string Version { get; set; }
public string Author { get; set; }
public IList<File> Files { get; set; }
public string Overrides { get; set; }
}
}