AlertData.cs 869 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Runtime.CompilerServices;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace IntelligentControlForsx.MyControls.alarm.Domain
  9. {
  10. public class AlertData : INotifyPropertyChanged
  11. {
  12. public event PropertyChangedEventHandler PropertyChanged;
  13. private void NotifyPropertyChanged([CallerMemberName] String propertyName = "")
  14. {
  15. PropertyChanged.Invoke(this, new PropertyChangedEventArgs(propertyName));
  16. }
  17. public string ObjectName { set; get; }
  18. public string ObjectId { set; get; }
  19. public string AlertText { get; set; }
  20. public string Rank { set; get; }
  21. public string LastUpdateTimeString { get; set; }
  22. public int AlertCount { set; get; }
  23. }
  24. }