123456789101112131415161718192021 |
- using System;
- namespace OTSCommon.Model
- {
- [Serializable]
- public class Element
- {
- public int ElementId { set; get; }
- public int FieldId { set; get; }
- //XrayId
- public int XrayId { set; get; }
- //ElementNum
- public int ElementNum { set; get; }
- //Name
- public string Name { set; get; }
- //Percentage
- public double Percentage { set; get; }
- }
- }
|