mirror of https://github.com/Sonarr/Sonarr
18 lines
308 B
C#
18 lines
308 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Marr.Data.QGen
|
|||
|
{
|
|||
|
public interface IQueryBuilder
|
|||
|
{
|
|||
|
string BuildQuery();
|
|||
|
}
|
|||
|
|
|||
|
public interface ISortQueryBuilder : IQueryBuilder
|
|||
|
{
|
|||
|
string BuildQuery(bool useAltNames);
|
|||
|
}
|
|||
|
}
|