You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
870 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.Text;
  5. using BPA.Helper;
  6. namespace DTO
  7. {
  8. public class AdInfoModel : NotifyBase
  9. {
  10. public string Gate { get { return _mGate; } set { _mGate = value; OnPropertyChanged(); } }
  11. private string _mGate;
  12. public string Msg { get { return _mMsg; } set { _mMsg = value; OnPropertyChanged(); } }
  13. private string _mMsg;
  14. public int Count { get { return _mCount; } set { _mCount = value; OnPropertyChanged(); } }
  15. private int _mCount;
  16. public ScreenInfoDto Info { get { return _mInfo; } set { _mInfo = value; OnPropertyChanged(); } }
  17. private ScreenInfoDto _mInfo = new ScreenInfoDto();
  18. public ObservableCollection<ScreenInfoDto> AInfo { get; set; } = new ObservableCollection<ScreenInfoDto>();
  19. }
  20. }