InkForge/InkForge.Api.Data/Infrastructure/WorkspaceEntities.cs

10 lines
230 B
C#
Raw Normal View History

2024-02-07 22:16:59 +01:00
using InkForge.Api.Data.Domain;
using InkForge.Data;
namespace InkForge.Api.Data.Infrastructure
{
public class WorkspaceEntity : Entity<Workspace, int>;
public class WorkspaceVersionEntity : VersionedEntity<Workspace, int>;
}