13 lines
228 B
C#

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