0
0

Remove interface that's not adding much value + other minor cleanups

This commit is contained in:
Rhys Ickeringill
2025-12-28 17:13:43 +11:00
parent 0c824f268c
commit 7ab61f8ff9
2 changed files with 7 additions and 13 deletions

View File

@@ -1,10 +1,9 @@
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations;
using Microsoft.EntityFrameworkCore;
namespace RAIC.Extensions.Configuration.EntityFrameworkCore;
public interface ISettingsDbContext<out TSettings> : IDisposable
public interface ISettingsDbContext<out TSettings> : System.IDisposable
where TSettings : System.Linq.IQueryable<ISetting>
{
TSettings Settings { get; }