Files

11 lines
221 B
C#
Raw Permalink Normal View History

2022-07-14 16:53:54 +02:00
using System.Collections.Generic;
namespace SocketIOClient.JsonSerializer
{
public class JsonSerializeResult
{
public string Json { get; set; }
public IList<byte[]> Bytes { get; set; }
}
}