User.cs

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

namespace Tools.Users
{
    public class User
    {
        public string Login { set; get; }
        public string Password { set; get; }

        //Пользователь уже авторизован
        public bool IsAuth { set; get; }
    }
}