9 lines
181 B
C#
9 lines
181 B
C#
|
|
using InkForge.Data.Domain;
|
||
|
|
|
||
|
|
namespace InkForge.Data.Infrastructure
|
||
|
|
{
|
||
|
|
public class NoteEntity : Entity<Note, int>;
|
||
|
|
|
||
|
|
public class NoteVersionEntity : VersionedEntity<Note, int>;
|
||
|
|
}
|