You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
879 B

  1. //-----------------------------------------------------------------------
  2. // <copyright file="CRequestMessage.cs" company="Origtek">
  3. // CRequestMessage belongs to Copyright (c) Origtek. All rights reserved.
  4. // </copyright>
  5. //-----------------------------------------------------------------------
  6. namespace OT.COM.SignalerMessage
  7. {
  8. using System.Collections.Generic;
  9. /// <summary>
  10. /// It focus on return message.
  11. /// </summary>
  12. public class CRequestMessage : CMessageBase
  13. {
  14. /// <summary>
  15. /// Gets or sets IP
  16. /// </summary>
  17. public string clientip { get; set; }
  18. /// <summary>
  19. /// Gets or sets Hostname
  20. /// </summary>
  21. public string cleinthostsname { get; set; }
  22. public string token { get; set; }
  23. public Dictionary<string, object> customparam { get; set; }
  24. }
  25. }