using RGBController2.ViewModels;
using System;
using System.Windows.Input;
namespace RGBController2
{
///
/// An interface used to represent a tab.
///
public interface ITab
{
///
/// The name used for the tab header.
///
string Name { get; set;}
///
/// The command used to close the tab.
///
ICommand CloseCommand { get; }
///
/// The event handler to handel closing the tab.
///
event EventHandler CloseRequested;
}
}