1
0
mirror of synced 2025-02-06 06:34:29 +01:00
GC-local-server-rewrite/Application/Interfaces/ICardDependencyAggregate.cs

12 lines
274 B
C#
Raw Normal View History

using Domain.Config;
using Microsoft.Extensions.Options;
2023-02-09 17:25:42 +08:00
namespace Application.Interfaces;
public interface ICardDependencyAggregate
{
ICardDbContext CardDbContext { get; }
IMusicDbContext MusicDbContext { get; }
IOptions<GameConfig> Options { get; }
2023-02-09 17:25:42 +08:00
}