Measure.cs 473 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Pur.Entity
  6. {
  7. class Measure
  8. {
  9. private string[] ordernos;
  10. public string[] Ordernos
  11. {
  12. get { return ordernos; }
  13. set { ordernos = value; }
  14. }
  15. private string orderno;
  16. public string Orderno
  17. {
  18. get { return orderno; }
  19. set { orderno = value; }
  20. }
  21. }
  22. }