mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
7 lines
123 B
C#
7 lines
123 B
C#
namespace Nadeko.Common;
|
|
|
|
public interface ISeria
|
|
{
|
|
byte[] Serialize<T>(T data);
|
|
T? Deserialize<T>(byte[]? data);
|
|
} |