Initial check-in
This commit is contained in:
17
Source/ProgramGUI/Model/PowerModuleDataModel.cs
Normal file
17
Source/ProgramGUI/Model/PowerModuleDataModel.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using CommunityToolkit.Mvvm.ComponentModel;
|
||||
|
||||
namespace ProgramGui.Model
|
||||
{
|
||||
public partial class PowerModuleDataModel : ObservableObject
|
||||
{
|
||||
[ObservableProperty]
|
||||
private string expectedVoltage;
|
||||
[ObservableProperty]
|
||||
private string actualVoltage;
|
||||
[ObservableProperty]
|
||||
private string expectedCurrent;
|
||||
[ObservableProperty]
|
||||
private string actualCurrent;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user