using Nethereum.JsonRpc.Client; using Nethereum.RPC.Infrastructure; using System; using System.Collections.Generic; using System.Text; namespace Nethereum.RPC.Shh.SymKey { public class ShhGetSymKey : GenericRpcRequestResponseHandlerParamString, IShhGetSymKey { public ShhGetSymKey(IClient client) : base(client, ApiMethods.shh_getSymKey.ToString()) { } } }