using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DTS.Common.Enums
{
///
/// Enum representing the TabControl operations type.
///
public enum RibbonControlOperation
{
///
/// The item has been added to the TabControl.
///
AddedItem,
///
/// The item has been removed from the TabControl.
///
RemovedItem
}
}