| 1234567891011121314151617181920212223242526272829303132 |
- using System.ComponentModel;
- namespace GeneralData;
- public enum DeviceModel
- {
- JetKepler,
- Proxima
- }
- public enum KeplerSubModel
- {
- [Description("2200A")]
- JetKepler_2200A,
- [Description("2200B")]
- JetKepler_2200B,
- [Description("2300")]
- JetKepler_2300,
- [Description("DSE")]
- JetKepler_DSE
- }
- public enum ProximaSubModel
- {
- [Description("NTP")]
- Proxima_NTP,
- [Description("SiBN")]
- Proxima_SiBN,
- [Description("NTP_HRP")]
- Proxima_NTP_HRP,
- [Description("ELK")]
- Proxima_ELK
- }
|