using Prism.Mvvm; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PDF_Master.Model.Dialog { public class GuidItemModel:BindableBase { private string title; public string Title { get { return title; } set { SetProperty(ref title, value); } } private string content; /// /// 文案内容 /// public string Content { get { return content; } set { SetProperty(ref content, value); } } private string imageSource; //图片路径 public string ImageSource { get { return imageSource; } set { SetProperty(ref imageSource, value); } } } }