UserInfoModel.cs

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

using Model.ViewModel.Edit;

namespace Model.ViewModel
{
    public class UserInfoModel
    {
        public string Login { set; get; }
        public string Password { set; get; }
        public bool IsAdmin { set; get; }

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