LocInfo.cs 610 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WCS.Entity
  7. {
  8. public class LocInfo
  9. {
  10. public LocInfo()
  11. {
  12. }
  13. public LocInfo(short line,short col,short layer,short depth)
  14. {
  15. this.Line = line;
  16. this.Col = col;
  17. this.Layer = layer;
  18. this.Depth = depth;
  19. }
  20. public short Line { get; set; }
  21. public short Col { get; set; }
  22. public short Layer { get; set; }
  23. public short Depth { get; set; }
  24. }
  25. }