1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

added marr.datamapper source code for easy debugging.

This commit is contained in:
kay.one
2013-03-30 14:56:34 -07:00
parent 58a05fcef8
commit 3cdff3bb71
96 changed files with 9198 additions and 363 deletions

View File

@@ -0,0 +1,17 @@
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);
}
}