Added audit log
This commit is contained in:
9
src/HopFrame.Web/AuditLogging/AuditLogContext.cs
Normal file
9
src/HopFrame.Web/AuditLogging/AuditLogContext.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace HopFrame.Web.AuditLogging;
|
||||
|
||||
public sealed class AuditLogContext(DbContextOptions<AuditLogContext> options) : DbContext(options) {
|
||||
|
||||
public DbSet<AuditLogEntry> AuditLog { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user