Serve original image file when possible

This commit is contained in:
Luke Pulverenti
2013-11-06 16:32:26 -05:00
parent 221b60b662
commit a2cd03610f
3 changed files with 58 additions and 1 deletions

View File

@@ -141,5 +141,10 @@ namespace MediaBrowser.Model.Drawing
/// </summary>
/// <value>The width.</value>
public double Width { get; set; }
public bool Equals(ImageSize size)
{
return Width.Equals(size.Width) && Height.Equals(size.Height);
}
}
}