الملفات
ghaymah-log-monitoring-project/Data/AppDbContext.cs
2025-10-05 22:25:53 +03:00

12 أسطر
290 B
C#

using Microsoft.EntityFrameworkCore;
using WondersAPI.Models;
namespace WondersAPI.Data
{
public class AppDbContext : DbContext
{
public DbSet<Wonder> Wonders => Set<Wonder>();
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) { }
}
}