|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
namespace AMESCoreStudio.Web
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
public class LoginViewModel
|
|
|
|
{
|
|
|
|
[Required]
|
|
|
|
public string LoginNo { get; set; }
|
|
|
|
[Required]
|
|
|
|
public string LoginPassword { get; set; }
|
|
|
|
|
|
|
|
public string Language { get; set; }
|
|
|
|
}
|
|
|
|
}
|