// Copyright © 2016 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
{
///
/// Represents a range
///
public struct Range
{
///
/// From
///
public int From { get; private set; }
///
/// To
///
public int To { get; private set; }
///
/// Range
///
/// from
/// to
public Range(int from, int to)
: this()
{
From = from;
To = to;
}
}
}