//------------------------------------------------------------------------------ // // 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 WorkflowTemplateStep { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public WorkflowTemplateStep() { this.WorkflowTemplateStepAssignees = new HashSet(); this.WorkflowTemplateTriggers = new HashSet(); } public long WorkflowTemplateStepID { get; set; } public long WorkflowTemplateID { get; set; } public short WorkflowTemplateStepTypeID { get; set; } public double Branch { get; set; } public double Step { get; set; } public double StepParent { get; set; } public double StepNext { get; set; } public string StepNextPossibles { get; set; } public string StepTitle { get; set; } public string StepDescription { get; set; } public int StepDurationWarning { get; set; } public int StepDurationOvertime { get; set; } public string StepApplicationRoles { get; set; } public string StepReassignRoles { get; set; } public bool IsDefaultStep { get; set; } public Nullable WorkflowTaskHandlerID { get; set; } public string IsRequiredXml { get; set; } public string IsRequiredScript { get; set; } public bool IsEmailRequired { get; set; } public bool CanAutoExpire { get; set; } [ScriptIgnore] public virtual WorkflowTaskHandler WorkflowTaskHandler { get; set; } [ScriptIgnore] public virtual WorkflowTemplate WorkflowTemplate { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] [ScriptIgnore] public virtual ICollection WorkflowTemplateStepAssignees { get; set; } [ScriptIgnore] public virtual WorkflowTemplateStepType WorkflowTemplateStepType { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection WorkflowTemplateTriggers { get; set; } } }