roadie/Roadie.Api.Library/Configuration/IImageSize.cs
2019-06-01 23:27:17 -05:00

8 lines
No EOL
158 B
C#

namespace Roadie.Library.Configuration
{
public interface IImageSize
{
short Height { get; set; }
short Width { get; set; }
}
}