mirror of
https://github.com/sphildreth/roadie
synced 2025-02-17 05:28:28 +00:00
17 lines
No EOL
308 B
C#
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;
|
|
}
|
|
}
|
|
} |