namespace DTS.Common.Enums
{
///
/// Enum representing the TabControl operations type.
///
public enum TabControlOperation
{
///
/// The item has been added to the TabControl.
///
AddedItem,
///
/// The item has been removed from the TabControl.
///
RemovedItem
}
}