2022-05-18 22:06:39 -05:00
|
|
|
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
|
2022-05-18 22:06:39 -05:00
|
|
|
{
|
|
|
|
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; }
|
|
|
|
}
|
|
|
|
}
|