AuthModel.cs
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; }
}
}