Files
Umbraco-CMS/src/Umbraco.Core/IO/ResizedImage.cs
2013-08-12 15:17:34 +02:00

20 lines
448 B
C#

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; }
}
}