mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-06 23:46:12 +00:00
16 lines
394 B
C#
16 lines
394 B
C#
namespace CryptoExchange.Net.Sockets.MessageParsing.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Serializer interface
|
|
/// </summary>
|
|
public interface IMessageSerializer
|
|
{
|
|
/// <summary>
|
|
/// Serialize an object to a string
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
/// <returns></returns>
|
|
string Serialize(object message);
|
|
}
|
|
}
|