Payload.cs 204 B

12345678910
  1. using System.Collections.Generic;
  2. namespace SocketIOClient.Transport
  3. {
  4. public class Payload
  5. {
  6. public string Text { get; set; }
  7. public List<byte[]> Bytes { get; set; }
  8. }
  9. }