Files
ServiceManager/ServiceManager.API/AppDbContext.cs
Yaël Perret b4e977948b first commit
2026-04-02 19:19:12 +02:00

12 lines
302 B
C#

using Microsoft.EntityFrameworkCore;
using ServiceManager.API.Models;
namespace ServiceManager.API
{
public class AppDbContext : DbContext
{
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) { }
public DbSet<Article> Articles { get; set; }
}
}