Files
DP44/Common/DTS.Common/.svn/pristine/35/350174046582289a7476ceb1b0b4a19a76ba16bd.svn-base

25 lines
565 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DTS.Common.Enums
{
/// <summary>
/// Enum representing the TabControl operations type.
/// </summary>
public enum RibbonControlOperation
{
/// <summary>
/// The item has been added to the TabControl.
/// </summary>
AddedItem,
/// <summary>
/// The item has been removed from the TabControl.
/// </summary>
RemovedItem
}
}