JsonSerializeResult.cs 221 B

12345678910
  1. using System.Collections.Generic;
  2. namespace SocketIOClient.JsonSerializer
  3. {
  4. public class JsonSerializeResult
  5. {
  6. public string Json { get; set; }
  7. public IList<byte[]> Bytes { get; set; }
  8. }
  9. }