mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
13 lines
235 B
C#
13 lines
235 B
C#
namespace MonoTorrent.Messages
|
|
{
|
|
interface IMessage
|
|
{
|
|
int ByteLength { get;}
|
|
|
|
byte[] Encode();
|
|
int Encode(byte[] buffer, int offset);
|
|
|
|
void Decode(byte[] buffer, int offset, int length);
|
|
}
|
|
}
|