123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.CommonData.PUF
- {
- public class PufDistanceData : NotifiableItem
- {
- public double Distance1 { get { return _distance1; } set { _distance1 = value; InvokePropertyChanged("Distance1"); } }
- public double Distance2 { get { return _distance2; } set { _distance2 = value; InvokePropertyChanged("Distance2"); } }
- public double Offset1 { get { return _offset1; } set { _offset1 = value; InvokePropertyChanged("Offset1"); } }
- public double Offset2 { get { return _offset2; } set { _offset2 = value; InvokePropertyChanged("Offset2"); } }
- private double _distance1 { get; set; }
- private double _distance2 { get; set; }
- private double _offset1 { get; set; }
- private double _offset2 { get;set; }
- }
- }
|