using XP.Scan.Attributes; namespace XP.Scan.Models { /// /// 射线源配置 | X-Ray source configuration /// 对应 INI [XRay] Section /// [IniSection("XRay")] public class XRayConfig { /// 管电流 (μA) | Tube current (μA) [IniKey("Current_uA")] public int CurrentUA { get; set; } /// 焦点尺寸 | Focus size [IniKey("Focus")] public string Focus { get; set; } = string.Empty; /// 管电压 (kV) | Tube voltage (kV) [IniKey("Voltage_kV")] public int VoltageKV { get; set; } } }