Files
Umbraco-CMS/src/Umbraco.Core/IO/ResizedImage.cs
T

20 lines
448 B
C#
Raw Normal View History

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