12 lines
311 B
C#

using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace CFUtils.Serialization.Modpack
{
public struct Game
{
[JsonIgnore]
public ManifestGames gameType;
public string Version { get; set; }
public IList<ModLoader> ModLoaders { get; set; }
}
}