namespace <%= fullNamespace %>.Data { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class Item { [Key] public int ItemId { get; set; } [Required] public string ItemName { get; set; } [Required] public string ItemDescription { get; set; } public int? AssignedUserId { get; set; } public int ModuleId { get; set; } public DateTime CreatedOnDate { get; set; } public int CreatedByUserId { get; set; } public DateTime LastModifiedOnDate { get; set; } public int LastModifiedByUserId { get; set; } } }