RGBController/RGBController2/ViewModels/Tabs/ITab.cs

14 lines
261 B
C#

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