10 lines
No EOL
222 B
C#
10 lines
No EOL
222 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace DrinkRateAPI.Contexts;
|
|
|
|
public class ApplicationDbContext : DbContext
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<DbContext> options) :
|
|
base(options)
|
|
{ }
|
|
} |