Advertisement
drakon-firestone

Untitled

Apr 9th, 2025
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. using Microsoft.EntityFrameworkCore;
  2. using Backend.Models;
  3.  
  4. namespace Backend.Data
  5. {
  6. public class ApplicationDbContext : DbContext
  7. {
  8. public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
  9. : base(options)
  10. {
  11.  
  12. }
  13.  
  14. public DbSet<User> Users { get; set; }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement