mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-05-04 00:03:08 +02:00
6 lines
133 B
C#
6 lines
133 B
C#
namespace Phantom.Controller.Database;
|
|
|
|
public interface ILazyDbContext : IAsyncDisposable {
|
|
ApplicationDbContext Ctx { get; }
|
|
}
|