Replacement for JDIS Importer
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

42 строки
913 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace jdis_import.RESTObjects
  6. {
  7. public class RESTMeta
  8. {
  9. #region Fields
  10. private int _numResults;
  11. private bool _success = true;
  12. private string _type;
  13. private string _errorMessage;
  14. #endregion
  15. #region Properties
  16. public int numResults
  17. {
  18. get { return _numResults; }
  19. set { _numResults = value; }
  20. }
  21. public bool success
  22. {
  23. get { return _success; }
  24. set { _success = value; }
  25. }
  26. public string errorMessage
  27. {
  28. get { return _errorMessage; }
  29. set { _errorMessage = value; }
  30. }
  31. public string type
  32. {
  33. get { return _type; }
  34. set { _type = value; }
  35. }
  36. #endregion
  37. }
  38. }