GuidItemModel.cs 969 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PDF_Master.Model.Dialog
  8. {
  9. public class GuidItemModel:BindableBase
  10. {
  11. private string title;
  12. public string Title
  13. {
  14. get { return title; }
  15. set
  16. {
  17. SetProperty(ref title, value);
  18. }
  19. }
  20. private string content;
  21. /// <summary>
  22. /// 文案内容
  23. /// </summary>
  24. public string Content
  25. {
  26. get { return content; }
  27. set
  28. {
  29. SetProperty(ref content, value);
  30. }
  31. }
  32. private string imageSource;
  33. //图片路径
  34. public string ImageSource
  35. {
  36. get { return imageSource; }
  37. set
  38. {
  39. SetProperty(ref imageSource, value);
  40. }
  41. }
  42. }
  43. }