| 12345678910111213 |
- using System.Collections.Generic;
- using Quadarax.Foundation.Core.Data.Entity;
- using Quadarax.Foundation.Core.Data.Interface.Entity;
- namespace BO.AppServer.Data.Entity
- {
- public partial class User : Entity<long>, IDao<long>
- {
- public virtual ICollection<UserWorkspace> UserWorkspaces { get; set; }
- public virtual ICollection<Structure> StructureCreatedByUsers { get; set; }
- public virtual ICollection<Structure> StructureModifiedByUsers { get; set; }
- }
- }
|