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