11 lines
256 B
C#
11 lines
256 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
public class WebhookDbContext : DbContext
|
|
{
|
|
public WebhookDbContext(DbContextOptions<WebhookDbContext> options) : base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<ProcessedInvoices> ProcessedInvoices { get; set; }
|
|
}
|