星火微课系统客户端
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 476B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using XHWK.Model;
  8. namespace XHWK.WKTool.Models
  9. {
  10. public class FileDirectoryData : NotifyModel
  11. {
  12. public ObservableCollection<FileDirectoryModel> menuList { get; set; }
  13. public FileDirectoryData()
  14. {
  15. menuList = new ObservableCollection<FileDirectoryModel>();
  16. }
  17. }
  18. }