using XP.Scan.Attributes;
namespace XP.Scan.Models
{
///
/// 校正配置 | Correction configuration
/// 对应 INI [Correction_Config] Section
///
[IniSection("Correction_Config")]
public class CorrectionConfig
{
/// 探测器水平偏移 (mm) | Detector horizontal offset (mm)
[IniKey("Detector_Horizontal_Offset")]
public double DetectorHorizontalOffset { get; set; }
/// 探测器旋转偏移 (°) | Detector rotation offset (°)
[IniKey("Detector_Rotation_Offset")]
public double DetectorRotationOffset { get; set; }
}
}