EditGroupModel.cs

33 lines | 636 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

using Model.Entities.Users;

namespace Model.ViewModel.Edit
{

    public class RootDirInfo
    {
        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 EditGroupModel
    {
        public int ID { set; get; }
        public string Name { set; get; }


        public EnumChanges Changes { set; get; }

        public List<RootDirInfo> RootDirs { set; get; }
    }

}