Workspace.decl.cs 330 B

123456789101112
  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 Workspace : Entity<long>, IDao<long>
  7. {
  8. public virtual ICollection<UserWorkspace> UserWorkspaces { get; set; }
  9. }
  10. }