星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FileDirectoryData.cs 360B

1 year ago
12345678910111213141516
  1. using System.Collections.ObjectModel;
  2. using XHWK.Model;
  3. namespace XHWK.WKTool.Models
  4. {
  5. public class FileDirectoryData : NotifyModel
  6. {
  7. public ObservableCollection<FileDirectoryModel> menuList { get; set; }
  8. public FileDirectoryData()
  9. {
  10. menuList = new ObservableCollection<FileDirectoryModel>();
  11. }
  12. }
  13. }