using System.Collections.Generic; namespace Ryujinx.Common.Configuration { public struct ModMetadata { public List Mods { get; set; } public ModMetadata() { Mods = new List(); } } }