1234567891011121314151617181920 |
- using PDF_Office.Helper;
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Office.Model.PDFTool
- {
- public class ToolItem : BindableBase
- {
- public int Id { get; set; }
- public PDFToolType Tag { get; set; }
- public string Image { get; set; }
- public string TitleInfo { get; set; }
- public string Title { get; set; }
- }
- }
|