mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00:00
17 lines
308 B
C#
17 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);
|
|
}
|
|
}
|