//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace Neo.LegitimateLicences.Data.Models { using System.Web.Script.Serialization; using System; using System.Collections.Generic; public partial class AdjudicationDetail { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public AdjudicationDetail() { this.Panels = new HashSet(); } public long AdjudicationDetailID { get; set; } public short AdjudicationDetailStatusID { get; set; } public System.DateTime MeetingDate { get; set; } public bool PreAdjudicationNotificationsSent { get; set; } public bool PreAdjudicationLettersSent { get; set; } public bool PostAdjudicationNotificationsSent { get; set; } public bool PostAdjudicationLettersSent { get; set; } public long CreatedByID { get; set; } public System.DateTime CreatedDate { get; set; } public long UpdatedByID { get; set; } public System.DateTime UpdatedDate { get; set; } public string MeetingTime { get; set; } public short AdjudicationTypeID { get; set; } public bool PreAdjudicationObjectionNotificationsSent { get; set; } public bool PreAdjudicationObjectionLettersSent { get; set; } public string LocationName { get; set; } public string LocationAddress { get; set; } public long OfficeLocationID { get; set; } public System.DateTime MeetingDateEnd { get; set; } public string MeetingTimeEnd { get; set; } public Nullable MaxAdjudicationAutoApplicationCount { get; set; } public string AdjudicationNumber { get; set; } public virtual AdjudicationDetailStatus Status { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Panels { get; set; } public virtual AdjudicationType Type { get; set; } } }