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.

40 lines
855 B

  1. using Stylet;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Windows.Media;
  6. namespace DTO
  7. {
  8. public class ScreenInfoDto : PropertyChangedBase
  9. {
  10. private string _UserName;
  11. public string UserName
  12. {
  13. get => _UserName;
  14. set => SetAndNotify(ref _UserName, value);
  15. }
  16. private string _CardNo;
  17. public string CardNo
  18. {
  19. get => _CardNo;
  20. set => SetAndNotify(ref _CardNo, value);
  21. }
  22. private string _Location;
  23. public string Location
  24. {
  25. get => _Location;
  26. set => SetAndNotify(ref _Location, value);
  27. }
  28. private string _Time;
  29. public string Time
  30. {
  31. get => _Time;
  32. set => SetAndNotify(ref _Time, value);
  33. }
  34. }
  35. }