Ichen Chhoeng ff0e97e36b blah
2025-11-17 11:25:33 +07:00

10 lines
254 B
C#

using khmereid_backend.Models;
using Microsoft.EntityFrameworkCore;
namespace khmereid_backend.Data
{
public class AppDbContext(DbContextOptions<AppDbContext> options) : DbContext(options)
{
public DbSet<User> Users { get; set; }
}
}