AuthModel.cs

17 lines | 334 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace web_map.Models
{
    public class AuthModel
    {
        public string Login { set; get; }
        public string Password { set; get; }

        public bool AuthError { set; get; }
        public string ErrorMsg { set; get; }

    }
}