roadie/Roadie.Api.Library/Configuration/Thumbnails.cs
2018-12-26 13:39:13 -06:00

17 lines
No EOL
308 B
C#

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