14 lines
288 B
C#
14 lines
288 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace Diary.Component.Entries.Repository
|
|
{
|
|
public class EntryConfiguration : IEntityTypeConfiguration<Entry>
|
|
{
|
|
public void Configure(EntityTypeBuilder<Entry> builder)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|