InkForge/shared/InkForge.Data/Infrastructure/NoteEntities.cs

9 lines
181 B
C#
Raw Normal View History

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