Add Event tables

This commit is contained in:
AleksDw
2025-04-24 22:06:15 +02:00
parent ba5725d780
commit 981236f6aa
6 changed files with 401 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using WebApp.Entities;
namespace WebApp.Data
{
@@ -9,5 +10,8 @@ namespace WebApp.Data
: base(options)
{
}
public DbSet<Event> Events => Set<Event>();
}
}