|
123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- using XHWK.Model;
-
- namespace XHWK.WKTool.Models
- {
- public class FileDirectoryData : NotifyModel
- {
- public ObservableCollection<FileDirectoryModel> menuList { get; set; }
-
- public FileDirectoryData()
- {
- menuList = new ObservableCollection<FileDirectoryModel>();
- }
- }
- }
|