2013-08-12 15:06:12 +02:00
|
|
|
namespace Umbraco.Core.IO
|
|
|
|
|
{
|
|
|
|
|
internal class ResizedImage
|
|
|
|
|
{
|
|
|
|
|
public ResizedImage()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ResizedImage(int width, int height, string fileName)
|
|
|
|
|
{
|
|
|
|
|
Width = width;
|
|
|
|
|
Height = height;
|
|
|
|
|
FileName = fileName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Width { get; set; }
|
|
|
|
|
public int Height { get; set; }
|
|
|
|
|
public string FileName { get; set; }
|
|
|
|
|
}
|
2013-07-23 17:49:54 +10:00
|
|
|
}
|