Files
DP44/Common/DTS.CommonCore/.svn/pristine/18/189cdc3da08d8067736268149ab53f7ea40771f8.svn-base
2026-04-17 14:55:32 -04:00

14 lines
332 B
Plaintext

using DTS.Common.Enums.TSRAIRGo;
namespace DTS.Common.Interface.TSRAIRGo
{
public interface INavigationButtonInfo
{
NavigationButtonId Id { get; }
string Text { get; set; }
string Tooltip { get; set; }
bool Enabled { get; set; }
bool ShowBorder { get; set; }
}
}