//------------------------------------------------------------------------------ // // 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 WorkflowUser { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public WorkflowUser() { this.WorkflowInstanceTasks = new HashSet(); this.WorkflowInstanceTasks1 = new HashSet(); this.WorkflowInstanceTasks2 = new HashSet(); } public long UserID { get; set; } [ScriptIgnore] public short UserStatusID { get; set; } [ScriptIgnore] public string LastName { get; set; } [ScriptIgnore] public string FirstName { get; set; } [ScriptIgnore] public string FullName { get; set; } public string KnownAs { get; set; } public string Email { get; set; } [ScriptIgnore] public string NTAccount { internal get; set; } [ScriptIgnore] internal Nullable IsPasswordExpired { get; set; } [ScriptIgnore] internal Nullable PasswordDate { get; set; } [ScriptIgnore] internal string PasswordHash { get; set; } [ScriptIgnore] internal string PasswordSalt { get; set; } [ScriptIgnore] internal string PasswordChallenge { get; set; } [ScriptIgnore] internal string PasswordQuestion { get; set; } [ScriptIgnore] internal string PasswordAnswerHash { get; set; } [ScriptIgnore] internal string PasswordAnswerSalt { get; set; } [ScriptIgnore] internal string PasswordAnswerChallenge { get; set; } [ScriptIgnore] internal long CreatedByID { get; set; } [ScriptIgnore] internal System.DateTime CreatedDate { get; set; } [ScriptIgnore] internal long UpdatedByID { get; set; } [ScriptIgnore] internal System.DateTime UpdatedDate { get; set; } internal Nullable EntityID { get; set; } internal string ItemID { get; set; } internal string Cell { get; set; } internal byte[] FingerprintTemplate { get; set; } public string FingerprintRequestToken { get; set; } public Nullable FingerprintRequestExpiryDate { get; set; } public Nullable UserProfileDocID { get; set; } public Nullable OfficeLocationID { get; set; } public virtual WorkflowEntity Entity { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] [ScriptIgnore] public virtual ICollection WorkflowInstanceTasks { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] [ScriptIgnore] public virtual ICollection WorkflowInstanceTasks1 { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] [ScriptIgnore] public virtual ICollection WorkflowInstanceTasks2 { get; set; } } }