1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Application/Interfaces/ICardDependencyAggregate.cs
2023-02-13 02:12:26 +08:00

13 lines
310 B
C#

using Domain.Config;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
namespace Application.Interfaces;
public interface ICardDependencyAggregate
{
ICardDbContext CardDbContext { get; }
IMusicDbContext MusicDbContext { get; }
IOptions<GameConfig> Options { get; }
}