15 lines
345 B
C#
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;
|
|
}
|
|
}
|