Files
HopFrame/src/HopFrame.Web/AuditLogging/AuditLogContext.cs
2025-07-06 16:35:46 +02:00

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; }
}