//------------------------------------------------------------------------------
//
// 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.ApplicationRequest.Models
{
using System.Web.Script.Serialization;
using System;
using System.Collections.Generic;
public partial class ApplicationRequestAdjudicationDecision
{
public long ApplicationRequestAdjudicationDecisionID { get; set; }
public long ApplicationRequestDetailID { get; set; }
public long AdjudicationDetailID { get; set; }
public Nullable AdjudicationDecisionID { get; set; }
public Nullable AdjudicatedByID { get; set; }
public Nullable AdjudicationDate { get; set; }
public string Comments { get; set; }
public bool IsActiveAdjudication { get; set; }
public Nullable LicenceDurationID { get; set; }
public Nullable LicenceExpiryDate { get; set; }
public virtual AdjudicationDecision AdjudicationDecision { get; set; }
[ScriptIgnore]
public virtual ApplicationRequestDetail ApplicationRequestDetail { get; set; }
public virtual LicenceDuration LicenceDuration { get; set; }
public virtual User AdjudicatedBy { get; set; }
}
}