12 lines
311 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
using System.Text.Json.Serialization;
2022-05-18 22:12:43 -05:00
namespace CFUtils.Serialization.Modpack
{
public struct Game
{
[JsonIgnore]
public ManifestGames gameType;
public string Version { get; set; }
public IList<ModLoader> ModLoaders { get; set; }
}
}