using System; using System.Collections.Generic; namespace Neo.LegitimateLicences.AppProviderIssueRequest.Models.Database { public partial class AppProviderIssueDetail { public long AppProviderIssueDetailID { get; set; } public Nullable WorkflowInstanceID { get; set; } public long ApplicationDetailID { get; set; } public long VerifiedProviderCertificateID { get; set; } public long CreatedByID { get; set; } public DateTime CreatedDate { get; set; } public long UpdatedByID { get; set; } public DateTime UpdatedDate { get; set; } public bool IsCancelled { get; set; } public Nullable IsDocumentVerificationRequired { get; set; } } }