10 lines
230 B
C#
10 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>;
|
||
|
|
}
|