mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
46c2e0ba82
Co-Authored-By: Qstick <376117+Qstick@users.noreply.github.com> Co-authored-by: ta264 <ta264@users.noreply.github.com> (cherry picked from commit 80b1aa9a2c81617bdda7ef551c19a2f114e49204)
11 lines
226 B
C#
11 lines
226 B
C#
using Dapper;
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public abstract class WhereBuilder : ExpressionVisitor
|
|
{
|
|
public DynamicParameters Parameters { get; protected set; }
|
|
}
|
|
}
|