终端一体化运控平台
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.
 
 
 

43 lines
833 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.Model
  7. {
  8. public class Book
  9. {
  10. public string Name { get; set; }
  11. public string Tag { get; set; }
  12. }
  13. public class BookEx : NotifyBase
  14. {
  15. public Book BookN { get; private set; }
  16. private bool _isChecked = false;
  17. public bool IsChecked
  18. {
  19. get
  20. {
  21. return _isChecked;
  22. }
  23. set
  24. {
  25. if (_isChecked != value)
  26. {
  27. _isChecked = value;
  28. OnPropertyChanged("IsChecked");
  29. }
  30. }
  31. }
  32. public BookEx(Book book)
  33. {
  34. BookN = book;
  35. }
  36. }
  37. }