ResponseArgs.cs 188 B

12345678
  1. namespace EZXR.Glass.Network.SocketIOClient.Arguments
  2. {
  3. public class ResponseArgs
  4. {
  5. public string RawText { get; set; }
  6. public string Text { get; set; }
  7. }
  8. }