Segment.cs 585 B

1234567891011121314151617181920212223242526
  1. using System;
  2. namespace OTSCommon.Model
  3. {
  4. [Serializable]
  5. public class Segment
  6. {
  7. //ID
  8. public int SegmentId { set; get; }
  9. //fieldid
  10. public int FieldId { set; get; }
  11. //XRayId
  12. public int XRayId { set; get; }
  13. //ParticleId
  14. public int ParticleId { set; get; }
  15. //SegmentNum
  16. public int SegmentNum { set; get; }
  17. //m_nHeight
  18. public int Height { set; get; }
  19. //m_nStart
  20. public int Start { set; get; }
  21. //m_nLength
  22. public int Length { set; get; }
  23. }
  24. }