roadie/Roadie.Api.Library/Configuration/Thumbnails.cs
2019-07-03 11:21:29 -05:00

18 lines
No EOL
312 B
C#

using System;
namespace Roadie.Library.Configuration
{
[Serializable]
public class ImageSize : IImageSize
{
public short Height { get; set; }
public short Width { get; set; }
public ImageSize()
{
Height = 80;
Width = 80;
}
}
}