mirror of
https://github.com/eliasstepanik/AutoProxy.git
synced 2026-01-10 05:08:33 +00:00
15 lines
314 B
C#
15 lines
314 B
C#
using DDNSUpdater.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace DDNSUpdater;
|
|
|
|
public class DataContext : DbContext
|
|
{
|
|
|
|
public DataContext(DbContextOptions<DataContext> options)
|
|
: base(options) { }
|
|
|
|
|
|
public DbSet<Domain> Domains { get; set; }
|
|
} |