using XP.Hardware.Detector.Abstractions.Enums; namespace XP.Hardware.Detector.Abstractions { /// /// 探测器信息 | Detector information /// 包含探测器的硬件参数和配置信息 /// public class DetectorInfo { /// /// 探测器类型 | Detector type /// public DetectorType Type { get; set; } /// /// 探测器型号 | Detector model /// public string Model { get; set; } /// /// 序列号 | Serial number /// public string SerialNumber { get; set; } /// /// 固件版本 | Firmware version /// public string FirmwareVersion { get; set; } /// /// 最大分辨率宽度 | Maximum resolution width /// public uint MaxWidth { get; set; } /// /// 最大分辨率高度 | Maximum resolution height /// public uint MaxHeight { get; set; } /// /// 像素尺寸(微米)| Pixel size (micrometers) /// public double PixelSize { get; set; } /// /// 位深度 | Bit depth /// public int BitDepth { get; set; } } }