using System; using System.Collections.Generic; #nullable disable namespace BO.AppServer.Data.Entity { public partial class User { public User() { Artifacts = new HashSet(); BillingInfoCreatedByUsers = new HashSet(); BillingInfoModifiedByUsers = new HashSet(); BillingPlanCreatedByUsers = new HashSet(); BillingPlanModifiedByUsers = new HashSet(); InvoiceCreatedByUsers = new HashSet(); InvoiceIssuerCreatedByUsers = new HashSet(); InvoiceIssuerModifiedByUsers = new HashSet(); InvoiceItemCreatedByUsers = new HashSet(); InvoiceItemModifiedByUsers = new HashSet(); InvoiceModifiedByUsers = new HashSet(); MetadocumentCreatedByUsers = new HashSet(); MetadocumentLastDownloadedByUsers = new HashSet(); MetadocumentModifiedByUsers = new HashSet(); MimeTypeCreatedByUsers = new HashSet(); MimeTypeModifiedByUsers = new HashSet(); StatusHistories = new HashSet(); TagCreatedByUsers = new HashSet(); TagModifiedByUsers = new HashSet(); WorkspaceCreatedByUsers = new HashSet(); WorkspaceModifiedByUsers = new HashSet(); } public long Id { get; set; } public string Ifreference { get; set; } public string Name { get; set; } public DateTime? LastLogged { get; set; } public DateTime? LastDisabled { get; set; } public DateTime? LastEnabled { get; set; } public DateTime Created { get; set; } public DateTime? Modified { get; set; } public int LangLcid { get; set; } public bool IsSystem { get; set; } public bool IsEnabled { get; set; } public virtual ICollection Artifacts { get; set; } public virtual ICollection BillingInfoCreatedByUsers { get; set; } public virtual ICollection BillingInfoModifiedByUsers { get; set; } public virtual ICollection BillingPlanCreatedByUsers { get; set; } public virtual ICollection BillingPlanModifiedByUsers { get; set; } public virtual ICollection InvoiceCreatedByUsers { get; set; } public virtual ICollection InvoiceIssuerCreatedByUsers { get; set; } public virtual ICollection InvoiceIssuerModifiedByUsers { get; set; } public virtual ICollection InvoiceItemCreatedByUsers { get; set; } public virtual ICollection InvoiceItemModifiedByUsers { get; set; } public virtual ICollection InvoiceModifiedByUsers { get; set; } public virtual ICollection MetadocumentCreatedByUsers { get; set; } public virtual ICollection MetadocumentLastDownloadedByUsers { get; set; } public virtual ICollection MetadocumentModifiedByUsers { get; set; } public virtual ICollection MimeTypeCreatedByUsers { get; set; } public virtual ICollection MimeTypeModifiedByUsers { get; set; } public virtual ICollection StatusHistories { get; set; } public virtual ICollection TagCreatedByUsers { get; set; } public virtual ICollection TagModifiedByUsers { get; set; } public virtual ICollection WorkspaceCreatedByUsers { get; set; } public virtual ICollection WorkspaceModifiedByUsers { get; set; } } }