1234567891011121314151617 |
- using System;
- namespace OTSCommon.Model
- {
- [Serializable]
- public class XRay
- {
- public int FieldId { set; get; }
- //XrayIndex
- public int XrayIndex { set; get; }
- //ElementNum
- public uint[] XrayData { set; get; }
- public Element ElementList { set; get; }
- }
- }
|