Files
DP44/Common/DTS.CommonCore/.svn/pristine/e0/e0fee8b01df154f217485535322357681e523db1.svn-base

14 lines
391 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
namespace DTS.Common.RibbonControl
{
/// <summary>
/// Provides an easy way to get a ribbon tab info that can be used to find a specific ribbon tab.
/// </summary>
public interface IRibbonTabInfoProvider
{
/// <summary>
/// Gets the unique identifier for the ribbon tab.
/// </summary>
string RibbonTabUid { get; }
}
}