AlarmTemplateEntity.cs 755 B

1234567891011121314151617181920212223
  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.Alarm
  8. {
  9. public class AlarmTemplateEntity : ObservableObject
  10. {
  11. public long id { get; set; }
  12. private int _alarmTypeId;
  13. public int alarmTypeId { get => _alarmTypeId; set => SetProperty(ref _alarmTypeId, value); }
  14. private string _templateCode;
  15. public string templateCode { get => _templateCode; set => SetProperty(ref _templateCode, value); }
  16. private int _templateType;
  17. public int templateType { get => _templateType; set => SetProperty(ref _templateType, value); }
  18. }
  19. }