At.FF.Krems.Configuration.Google.StaticMaps.Entities.ImageSize.ImageSize C# (CSharp) Method

ImageSize() public method

Initializes a new instance of the ImageSize struct.
public ImageSize ( int width, int height )
width int The width.
height int The height.
        public ImageSize(int width, int height)
        {
            this.Width = width;
            this.Height = height;
        }
ImageSize