1
0
mirror of synced 2024-11-15 02:07:38 +01:00
GC-local-server-rewrite/Application/Interfaces/ICardDependencyAggregate.cs
2023-02-09 17:25:42 +08:00

9 lines
206 B
C#

using Microsoft.Extensions.Logging;
namespace Application.Interfaces;
public interface ICardDependencyAggregate
{
ICardDbContext CardDbContext { get; }
IMusicDbContext MusicDbContext { get; }
}