Files
GenericTeProgramLibrary/Source/ProgramGUI/Model/PowerModuleDataModel.cs
2025-01-04 08:33:01 -07:00

15 lines
345 B
C#

using CommunityToolkit.Mvvm.ComponentModel;
namespace ProgramGui.Model
{
public partial class PowerModuleDataModel : ObservableObject
{
[ObservableProperty]
private string expectedVoltage;
[ObservableProperty]
private string actualVoltage;
[ObservableProperty]
private string actualCurrent;
}
}