mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 01:16:22 +08:00
8 lines
176 B
C#
8 lines
176 B
C#
namespace Bit.Infrastructure.EntityFramework.Repositories.Queries
|
|
{
|
|
public interface IQuery<TOut>
|
|
{
|
|
IQueryable<TOut> Run(DatabaseContext dbContext);
|
|
}
|
|
}
|