using Nethereum.JsonRpc.Client; using Nethereum.RPC.Infrastructure; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Nethereum.RPC.Shh.SymKey { public class ShhAddSymKey : GenericRpcRequestResponseHandlerParamString, IShhAddSymKey { public ShhAddSymKey(IClient client) : base(client, ApiMethods.shh_addSymKey.ToString()) { } } }