aspnetcore/samples/MvcSample.Web/Models/User.cs

21 lines
696 B
C#

using System.ComponentModel.DataAnnotations;
namespace MvcSample.Web.Models
{
public class User
{
[Required]
[MinLength(4)]
public string Name { get; set; }
public string Address { get; set; }
public int Age { get; set; }
public decimal GPA { get; set; }
public User Dependent { get; set; }
public bool Alive { get; set; }
public string Password { get; set; }
[DisplayFormat(ConvertEmptyStringToNull = true, NullDisplayText = "You can explain about your profession")]
public string Profession { get; set; }
public string About { get; set; }
public string Log { get; set; }
}
}