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.

36 lines
753 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Entity.ShowEasyDtos
  7. {
  8. public class ArgumentDTO
  9. {
  10. /// <summary>
  11. /// Desc:
  12. /// Default:
  13. /// Nullable:False
  14. /// </summary>
  15. public string ArgumentID { get; set; }
  16. /// <summary>
  17. /// Desc:
  18. /// Default:
  19. /// Nullable:True
  20. /// </summary>
  21. public string ArgumentValue { get; set; }
  22. public string ItemType { get; set; }
  23. /// <summary>
  24. /// Desc:
  25. /// Default:
  26. /// Nullable:True
  27. /// </summary>
  28. public int? OrderByValue { get; set; }
  29. }
  30. }