Files
nadekobot/NadekoBot.Core/Common/PubSub/ISeria.cs
2021-09-06 21:29:22 +02:00

8 lines
154 B
C#

namespace NadekoBot.Core.Common
{
public interface ISeria
{
byte[] Serialize<T>(T data);
T Deserialize<T>(byte[] data);
}
}