RootDir.cs

31 lines | 603 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Model.ViewModel.Edit
{
    public class InfoRootDirModel
    {
        public int ID { set; get; }
        public string Name { set; get; }


        public bool CanDownload { set; get; }
        public bool CanUpload { set; get; }
        public bool CanOpen { set; get; }
    }


    public class EditRootDirModel : I_EditModel
    {
        public int ID { set; get; }
        public string Name { set; get; }

        public EnumChanges Changes { set; get; }
    }


}