EnvironmentTemperatureEntity.cs 697 B

123456789101112131415161718192021
  1. using CommunityToolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ivf_tl_Entity.Entity
  8. {
  9. public class EnvironmentTemperatureEntity : ObservableObject
  10. {
  11. private decimal _temperature;
  12. public decimal temperature { get => _temperature; set => SetProperty(ref _temperature, value); }
  13. private string _collectName;
  14. public string collectName { get => _collectName; set => SetProperty(ref _collectName, value); }
  15. private string _tlSn;
  16. public string tlSn { get => _tlSn; set => SetProperty(ref _tlSn, value); }
  17. }
  18. }