1234567891011121314151617181920212223242526272829 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Office.ViewModels.HomePanel
- {
- public class HomeToolsContentViewModel:BindableBase
- {
- public HomeToolsContentViewModel()
- {
- }
- }
- public class QuickToolItem : BindableBase
- {
- public int Id { get; set; }
- public string Image { get; set; }
- public string NameInfo { get; set; }
- public string Name { get; set; }
- public QuickToolItem()
- {
- }
- }
- }
|