handle year in name when searching

This commit is contained in:
Luke Pulverenti
2014-02-13 23:00:13 -05:00
parent 58a46171ab
commit a4b40ad9d9
21 changed files with 2761 additions and 227 deletions

View File

@@ -1,4 +1,5 @@
using System.IO;
using System.Collections.Specialized;
using System.IO;
using System.Net;
namespace MediaBrowser.Common.Net
@@ -31,5 +32,11 @@ namespace MediaBrowser.Common.Net
/// </summary>
/// <value>The temp file path.</value>
public string TempFilePath { get; set; }
/// <summary>
/// Gets or sets the headers.
/// </summary>
/// <value>The headers.</value>
public NameValueCollection Headers { get; set; }
}
}