2023-02-13 02:12:26 +08:00
|
|
|
|
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; }
|
2023-02-13 02:12:26 +08:00
|
|
|
|
|
|
|
|
|
IOptions<GameConfig> Options { get; }
|
2023-02-09 17:25:42 +08:00
|
|
|
|
}
|