| 123456789101112131415161718192021 |
- 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
- {
- public class EnvironmentTemperatureEntity : ObservableObject
- {
- private decimal _temperature;
- public decimal temperature { get => _temperature; set => SetProperty(ref _temperature, value); }
- private string _collectName;
- public string collectName { get => _collectName; set => SetProperty(ref _collectName, value); }
- private string _tlSn;
- public string tlSn { get => _tlSn; set => SetProperty(ref _tlSn, value); }
- }
- }
|