12 lines
310 B
C#
Raw Normal View History

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