14 lines
262 B
C#
14 lines
262 B
C#
namespace Assets.Common
|
|
{
|
|
public class Size
|
|
{
|
|
public double Width { get; }
|
|
public double Height { get; }
|
|
|
|
public Size(double width, double height)
|
|
{
|
|
Width = width;
|
|
Height = height;
|
|
}
|
|
}
|
|
} |