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