2022-08-17 19:00:37 +00:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace DataModel.Database.Common;
|
|
|
|
|
|
|
|
|
|
public interface IDataContext
|
|
|
|
|
{
|
|
|
|
|
public DbSet<Setting> Settings { get; set; }
|
|
|
|
|
|
|
|
|
|
public DbSet<Section> Sections { get; set; }
|
|
|
|
|
|
|
|
|
|
public DbSet<TextElement> TextElements { get; set; }
|
|
|
|
|
|
|
|
|
|
public DbSet<Translation> Translations { get; set; }
|
2022-11-14 19:32:41 +00:00
|
|
|
|
|
|
|
|
|
public Task ExportAsync(string path);
|
2022-08-17 19:00:37 +00:00
|
|
|
|
}
|