Files
XplorePlane/XP.Scan/Models/XRayConfig.cs
T
2026-04-22 15:16:43 +08:00

25 lines
670 B
C#

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