mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 00:53:57 -07:00
12 lines
221 B
C#
12 lines
221 B
C#
namespace Marr.Data.QGen
|
|
{
|
|
public interface IQueryBuilder
|
|
{
|
|
string BuildQuery();
|
|
}
|
|
|
|
public interface ISortQueryBuilder : IQueryBuilder
|
|
{
|
|
string BuildQuery(bool useAltNames);
|
|
}
|
|
}
|