Files
RobotApp/RobotApp/Data/ApplicationDbContext.cs
Đăng Nguyễn 70eac8a9c8 update identity
2025-09-26 09:37:06 +07:00

13 lines
355 B
C#

using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace RobotApp.Data
{
public class ApplicationDbContext : IdentityDbContext<ApplicationUser, ApplicationRole, string>
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options)
{
}
}
}