mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
18 lines
No EOL
312 B
C#
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;
|
|
}
|
|
}
|
|
} |