12 lines
310 B
C#
12 lines
310 B
C#
|
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; }
|
||
|
}
|
||
|
}
|