//------------------------------------------------------------------------------ // // 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.Legitimate.Data.Models { using System.Web.Script.Serialization; using System; using System.Collections.Generic; public partial class AdjudicationPanel { public long AdjudicationPanelID { get; set; } public long AdjudicationDetailID { get; set; } public long PanelMemberUserID { get; set; } public bool HasAttended { get; set; } public bool IsChairman { get; set; } public Nullable DateConfirmed { get; set; } public bool AddedAfterStart { get; set; } [ScriptIgnore] public virtual AdjudicationDetail AdjudicationDetail { get; set; } } }