User.decl.cs 493 B

12345678910111213
  1. using System.Collections.Generic;
  2. using Quadarax.Foundation.Core.Data.Entity;
  3. using Quadarax.Foundation.Core.Data.Interface.Entity;
  4. namespace BO.AppServer.Data.Entity
  5. {
  6. public partial class User : Entity<long>, IDao<long>
  7. {
  8. public virtual ICollection<UserWorkspace> UserWorkspaces { get; set; }
  9. public virtual ICollection<Structure> StructureCreatedByUsers { get; set; }
  10. public virtual ICollection<Structure> StructureModifiedByUsers { get; set; }
  11. }
  12. }