mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 00:52:49 -05: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);
|
|
}
|