using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; namespace HealthchoiceMVC.Models { public class lookup_table { [Key] [Display(Name = "Lookup Key")] public int lookup_key { get; set; } [Required] [Display(Name = "Lookup Value")] [StringLength(255)] public string lookup_dropdown_value { get; set; } [Required] [StringLength(255)] [Display(Name = "Dropdown Description")] public string lookup_dropdown_description { get; set; } [Required] [StringLength(255)] [Display(Name = "Lookup Table")] public string lookup_type { get; set; } [Display(Name = "Display Order")] public int lookup_display_order { get; set; } [Display(Name = "Active")] public bool active { get; set; } } }