// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Public License (Ms-PL).
// Please see http://go.microsoft.com/fwlink/?LinkID=131993] for details.
// All other rights reserved.
namespace System.Windows.Controls
{
///
/// A structure that groups two values.
///
/// The type of the first value.
/// The type of the second value.
internal class Tuple
{
///
/// Gets the first value.
///
public T0 First { get; private set; }
///
/// Gets the second value.
///
public T1 Second { get; private set; }
///
/// Initializes a new instance of the Tuple structure.
///
/// The first value.
/// The second value.
public Tuple(T0 first, T1 second)
{
First = first;
Second = second;
}
}
}