Implemented Login workflow
This commit is contained in:
10
SpotiParty.Web/DatabaseContext.cs
Normal file
10
SpotiParty.Web/DatabaseContext.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SpotiParty.Web.Models;
|
||||
|
||||
namespace SpotiParty.Web;
|
||||
|
||||
public class DatabaseContext(DbContextOptions<DatabaseContext> options) : DbContext(options) {
|
||||
|
||||
public DbSet<User> Users { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user