1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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;
- /// <summary>
- /// 文案内容
- /// </summary>
- 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);
- }
- }
- }
- }
|