mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-29 04:47:37 +00:00
13 lines
221 B
C#
13 lines
221 B
C#
namespace Marr.Data.QGen
|
|
{
|
|
public interface IQueryBuilder
|
|
{
|
|
string BuildQuery();
|
|
}
|
|
|
|
public interface ISortQueryBuilder : IQueryBuilder
|
|
{
|
|
string BuildQuery(bool useAltNames);
|
|
}
|
|
}
|