mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
48 lines
504 B
C#
48 lines
504 B
C#
namespace Microsoft.Zune.Util
|
|
{
|
|
public class Size
|
|
{
|
|
private int m_width;
|
|
|
|
private int m_height;
|
|
|
|
public int Height
|
|
{
|
|
get
|
|
{
|
|
return m_height;
|
|
}
|
|
set
|
|
{
|
|
m_height = value;
|
|
}
|
|
}
|
|
|
|
public int Width
|
|
{
|
|
get
|
|
{
|
|
return m_width;
|
|
}
|
|
set
|
|
{
|
|
m_width = value;
|
|
}
|
|
}
|
|
|
|
public Size(int width, int height)
|
|
{
|
|
m_width = width;
|
|
m_height = height;
|
|
base._002Ector();
|
|
}
|
|
|
|
public Size()
|
|
{
|
|
m_width = 0;
|
|
m_height = 0;
|
|
base._002Ector();
|
|
}
|
|
}
|
|
}
|