You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MVC3GuestBook/Mvc3GuestBook\Models\Accoun...

16 lines
343 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
namespace Yu.Book.Models
{
public class Account
{
public int AccountID { get; set; }
[Required]
[Display(Name = "用户名")]
public string UserName { get; set; }