12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Text;
- using System.Threading.Tasks;
- namespace IntelligentControlForsx.MyControls.alarm.Domain
- {
- public class AlertData : INotifyPropertyChanged
- {
- public event PropertyChangedEventHandler PropertyChanged;
- private void NotifyPropertyChanged([CallerMemberName] String propertyName = "")
- {
- PropertyChanged.Invoke(this, new PropertyChangedEventArgs(propertyName));
- }
- public string ObjectName { set; get; }
- public string ObjectId { set; get; }
- public string AlertText { get; set; }
- public string Rank { set; get; }
- public string LastUpdateTimeString { get; set; }
- public int AlertCount { set; get; }
-
- }
- }
|