//------------------------------------------------------------------------------
//
// 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.Afx.Admin.Wf
{
using System.Web.Script.Serialization;
using System;
using System.Collections.Generic;
public partial class Workflow
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Workflow()
{
this.WorkflowTaskHandlers = new HashSet();
this.WorkflowTemplates = new HashSet();
}
public long WorkflowID { get; set; }
public short WorkflowCategoryID { get; set; }
public string DashboardControllerName { get; set; }
public string WorkflowControllerName { get; set; }
public string WorkflowFriendlyName { get; set; }
public string WorkflowDescription { get; set; }
public int EntityID { get; set; }
public string AdministratorRoles { get; set; }
public string InitiatorRoles { get; set; }
public string HelpUrl { 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 Nullable IntegrationSystemID { get; set; }
public string ViewerRoles { get; set; }
[ScriptIgnore]
public virtual WorkflowCategory WorkflowCategory { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection WorkflowTaskHandlers { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection WorkflowTemplates { get; set; }
}
}