更新
This commit is contained in:
44
ViewModels/HardnessDisplaySamplePoint.cs
Normal file
44
ViewModels/HardnessDisplaySamplePoint.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using CommunityToolkit.Mvvm.ComponentModel;
|
||||
using System;
|
||||
|
||||
namespace TabletTester2025.ViewModels
|
||||
{
|
||||
public class HardnessDisplaySamplePoint : ObservableObject
|
||||
{
|
||||
private int _groupNo;
|
||||
private int _sequenceNo;
|
||||
private double _value;
|
||||
private double _deviationFromAverage;
|
||||
private DateTime _recordedAt;
|
||||
|
||||
public int GroupNo
|
||||
{
|
||||
get => _groupNo;
|
||||
set => SetProperty(ref _groupNo, value);
|
||||
}
|
||||
|
||||
public int SequenceNo
|
||||
{
|
||||
get => _sequenceNo;
|
||||
set => SetProperty(ref _sequenceNo, value);
|
||||
}
|
||||
|
||||
public double Value
|
||||
{
|
||||
get => _value;
|
||||
set => SetProperty(ref _value, value);
|
||||
}
|
||||
|
||||
public double DeviationFromAverage
|
||||
{
|
||||
get => _deviationFromAverage;
|
||||
set => SetProperty(ref _deviationFromAverage, value);
|
||||
}
|
||||
|
||||
public DateTime RecordedAt
|
||||
{
|
||||
get => _recordedAt;
|
||||
set => SetProperty(ref _recordedAt, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user