InkForge/InkForge.Api.Data/Infrastructure/WorkspaceEntities.cs
2024-02-07 22:16:59 +01:00

9 lines
230 B
C#

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>;
}