mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-29 18:14:28 -04: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);
|
|
}
|
|
}
|