using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; namespace Registration.Models { public class UserDetails { public string Name { get; set; } public string UserName { get; set; } public string Password { get; set; } public string EmailAddress { get; set; } } }