using RGBController2.ViewModels;
using System;
using System.Windows.Input;
namespace RGBController2
{
public interface ITab
string Name { get; set;}
ICommand CloseCommand { get; }
event EventHandler CloseRequested;
}