using Ryujinx.HLE.OsHle.Ipc; using System.Collections.Generic; namespace Ryujinx.HLE.OsHle.Services.Ns { class IServiceGetterInterface : IpcService { private Dictionary m_Commands; public override IReadOnlyDictionary Commands => m_Commands; public IServiceGetterInterface() { m_Commands = new Dictionary() { //... }; } } }