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