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

8 lines
181 B
C#

using InkForge.Data.Domain;
namespace InkForge.Data.Infrastructure
{
public class NoteEntity : Entity<Note, int>;
public class NoteVersionEntity : VersionedEntity<Note, int>;
}