9 lines
243 B
C#
9 lines
243 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace HopFrame.Web.AuditLogging;
|
|
|
|
public sealed class AuditLogContext(DbContextOptions<AuditLogContext> options) : DbContext(options) {
|
|
|
|
public DbSet<AuditLogEntry> AuditLog { get; set; }
|
|
|
|
} |