namespace Assets.Common { public class Size { public double Width { get; } public double Height { get; } public Size(double width, double height) { Width = width; Height = height; } } }