12345678910111213141516171819202122 |
-
- using OTSCLRINTERFACE;
- using System.Collections.Generic;
- namespace OTSMeasureApp._0_OTSModel.Measure._5_OTSMining
- {
- public class CMatrixXrayParticle :COTSParticleClr
- {
- private int xrayStep;
- private List<CPosXrayClr> matrixXrayData=new List<CPosXrayClr>();
- public CMatrixXrayParticle()
- {
- // This constructor is used when an object is loaded from a persistent storage.
- // Do not place any code here.
- }
- public int XrayStep { get => xrayStep; set => xrayStep = value; }
-
- }
- }
|