2023-09-05 01:21:19 +03:00

14 lines
235 B
C#

using DiscordRPC.RPC.Payload;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DiscordRPC.RPC.Commands
{
internal interface ICommand
{
IPayload PreparePayload(long nonce);
}
}