mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
12 lines
232 B
C#
12 lines
232 B
C#
namespace Marr.Data.QGen
|
|
{
|
|
internal interface IQuery
|
|
{
|
|
/// <summary>
|
|
/// Generates a SQL query for a given entity.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
string Generate();
|
|
}
|
|
}
|