CMatrixXrayParticle.cs 570 B

12345678910111213141516171819202122
  1. 
  2. using OTSCLRINTERFACE;
  3. using System.Collections.Generic;
  4. namespace OTSMeasureApp._0_OTSModel.Measure._5_OTSMining
  5. {
  6. public class CMatrixXrayParticle :COTSParticleClr
  7. {
  8. private int xrayStep;
  9. private List<CPosXrayClr> matrixXrayData=new List<CPosXrayClr>();
  10. public CMatrixXrayParticle()
  11. {
  12. // This constructor is used when an object is loaded from a persistent storage.
  13. // Do not place any code here.
  14. }
  15. public int XrayStep { get => xrayStep; set => xrayStep = value; }
  16. }
  17. }