Files
HopFrame/testing/HopFrame.Testing/DatabaseContext.cs
2025-01-14 11:34:57 +01:00

10 lines
246 B
C#

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