| 12345678910111213141516171819202122232425262728 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace WCS.Entity{    public class LocInfo    {        public LocInfo()        {                 }        public LocInfo(short line,short col,short layer,short depth)        {            this.Line = line;            this.Col = col;            this.Layer = layer;            this.Depth = depth;        }        public short Line { get; set; }        public short Col { get; set; }        public short Layer { get; set; }        public short Depth { get; set; }    }}
 |