//------------------------------------------------------------------------------ // // 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.Services.Workflows.Entities { 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.WorkflowTemplates = new HashSet(); this.WorkflowBuddies = new HashSet(); } public long WorkflowID { 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 int EntityID { get; set; } public string WorkflowControllerName { get; set; } public string WorkflowFriendlyName { get; set; } public string WorkflowDescription { get; set; } public string DashboardControllerName { get; set; } public short WorkflowCategoryID { get; set; } public string AdministratorRoles { get; set; } public string InitiatorRoles { get; set; } public string HelpUrl { get; set; } public string ViewerRoles { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection WorkflowTemplates { get; set; } public virtual WorkflowEntity WorkflowEntity { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection WorkflowBuddies { get; set; } } }