// Copyright © 2017 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp.Structs
{
///
/// Structure representing a size.
///
public struct Size
{
///
/// Width
///
public int Width { get; private set; }
///
/// Height
///
public int Height { get; private set; }
///
/// Size
///
/// width
/// height
public Size(int width, int height)
: this()
{
Width = width;
Height = height;
}
}
}