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; }
}
}