| 1234567891011121314151617181920212223242526272829303132 |
- using CommunityToolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.Result
- {
- public class PositionEntity : ObservableObject
- {
- public int houseSn { get; set; }
- public int layerNum { get; set; }
- public string positionType { get; set; }
- public string tlSn { get; set; }
- public int verticalMotorPosition { get; set; }
- public int verticalMotorSpacePulse { get; set; }
- public int wellSn { get; set; }
- private int _focusStartingPoint;
- public int focusStartingPoint { get => _focusStartingPoint; set => SetProperty(ref _focusStartingPoint, value); }
- public bool IsUpdate { get; set; } = false;
- public long EmbryoId { get; set; }
- }
- }
|