// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex
{
using System;
using Perspex.Controls;
public class Match
{
public Control Control
{
get;
set;
}
public IObservable Observable
{
get;
set;
}
public Match Previous
{
get;
set;
}
}
}