steam-openid-connect-provider/src/AppInMemoryDbContext.cs
2019-05-02 00:41:28 +03:00

15 lines
461 B
C#

using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace SteamOpenIdConnectProxy
{
// This is completely in-memory, we do not need a persistent store.
public class AppInMemoryDbContext : IdentityDbContext<IdentityUser>
{
public AppInMemoryDbContext(DbContextOptions<AppInMemoryDbContext> options)
: base(options)
{
}
}
}