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