diff options
Diffstat (limited to 'MediaBrowser.Model/Querying/ItemsByNameQuery.cs')
| -rw-r--r-- | MediaBrowser.Model/Querying/ItemsByNameQuery.cs | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Querying/ItemsByNameQuery.cs b/MediaBrowser.Model/Querying/ItemsByNameQuery.cs index 1d8849648..22ed79108 100644 --- a/MediaBrowser.Model/Querying/ItemsByNameQuery.cs +++ b/MediaBrowser.Model/Querying/ItemsByNameQuery.cs @@ -67,10 +67,26 @@ namespace MediaBrowser.Model.Querying /// <value>The sort by.</value> public string[] SortBy { get; set; } + /// <summary> + /// Gets or sets the image types. + /// </summary> + /// <value>The image types.</value> public ImageType[] ImageTypes { get; set; } /// <summary> - /// Initializes a new instance of the <see cref="ItemsByNameQuery"/> class. + /// Gets or sets the name starts with or greater. + /// </summary> + /// <value>The name starts with or greater.</value> + public string NameStartsWithOrGreater { get; set; } + + /// <summary> + /// Gets or sets the name less than. + /// </summary> + /// <value>The name less than.</value> + public string NameLessThan { get; set; } + + /// <summary> + /// Initializes a new instance of the <see cref="ItemsByNameQuery" /> class. /// </summary> public ItemsByNameQuery() { |
