11 lines
357 B
C#
11 lines
357 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Sequence.Entities;
|
|
|
|
public class DbContext : IdentityDbContext<User, IdentityRole<Guid>, Guid>
|
|
{
|
|
public DbContext(DbContextOptions<DbContext> options) : base(options) { }
|
|
|
|
public DbSet<Card> Cards { get; set; }
|
|
} |