ValueItem.cs 542 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CommonStorage.Model
  7. {
  8. public class ValueItem
  9. {
  10. /// <summary>
  11. /// 值
  12. /// </summary>
  13. public string Value { get; set; }
  14. /// <summary>
  15. /// 范围
  16. /// </summary>
  17. public string Range { get; set; }
  18. public ValueItem()
  19. {
  20. }
  21. public override string ToString()
  22. {
  23. return Value;
  24. }
  25. }
  26. }