Initial check-in

This commit is contained in:
Duc
2025-01-03 09:50:39 -07:00
parent 45596e360d
commit 1d8f6e4c96
143 changed files with 9835 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using CommunityToolkit.Mvvm.ComponentModel;
namespace ProgramGui.Model
{
public partial class ImpedanceDataModel : ObservableObject
{
[ObservableProperty]
private string passFailImagePath;
[ObservableProperty]
private string description;
}
}