18 lines
617 B
C#
18 lines
617 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace HC_APTBS.ViewModels
|
|
{
|
|
/// <summary>
|
|
/// Represents a single named parameter value displayed in a phase card
|
|
/// (e.g. RPM, ME, FBKW, or a temperature readiness condition).
|
|
/// </summary>
|
|
public sealed partial class OperationValueViewModel : ObservableObject
|
|
{
|
|
/// <summary>Parameter display name (e.g. "RPM", "ME", "FBKW").</summary>
|
|
[ObservableProperty] private string _name = string.Empty;
|
|
|
|
/// <summary>Parameter value in engineering units.</summary>
|
|
[ObservableProperty] private double _value;
|
|
}
|
|
}
|