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 ModLoaders { get; set; } } }