mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 07:56:14 +00:00
17 lines
314 B
C#
17 lines
314 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace SportsStore.WebUI.Models
|
|
{
|
|
public class LoginViewModel
|
|
{
|
|
[Required]
|
|
public string UserName { get; set; }
|
|
|
|
[Required]
|
|
public string Password { get; set; }
|
|
}
|
|
} |