| 1234567891011121314151617181920212223 |
- 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.Alarm
- {
- public class AlarmTemplateEntity : ObservableObject
- {
- public long id { get; set; }
- private int _alarmTypeId;
- public int alarmTypeId { get => _alarmTypeId; set => SetProperty(ref _alarmTypeId, value); }
- private string _templateCode;
- public string templateCode { get => _templateCode; set => SetProperty(ref _templateCode, value); }
- private int _templateType;
- public int templateType { get => _templateType; set => SetProperty(ref _templateType, value); }
- }
- }
|