mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-05-25 19:44:27 +00:00
14 lines
235 B
C#
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);
|
|
}
|
|
}
|