8 lines
154 B
C#
8 lines
154 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace backend.Data;
|
|
|
|
public class AppDbContext(DbContextOptions<AppDbContext> options) : DbContext(options)
|
|
{
|
|
}
|