mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 01:08:26 -04:00
8 lines
154 B
C#
8 lines
154 B
C#
namespace NadekoBot.Core.Common
|
|
{
|
|
public interface ISeria
|
|
{
|
|
byte[] Serialize<T>(T data);
|
|
T Deserialize<T>(byte[] data);
|
|
}
|
|
} |