sharding/src/ShardingCore/Core/RuntimeContexts/IShardingRuntimeContext`1.cs

10 lines
225 B
C#

using ShardingCore.Sharding.Abstractions;
namespace ShardingCore.Core.RuntimeContexts
{
public interface IShardingRuntimeContext<TDbContext> : IShardingRuntimeContext where TDbContext : IShardingDbContext
{
}
}