16 lines
343 B
C#
16 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DTS.Common.Enums
|
|
{
|
|
public static class RibbonTabNames
|
|
{
|
|
public const string Tab1 = "TBD";
|
|
public const string Tab2 = "TBD";
|
|
public const string Tab3 = "TBD";
|
|
}
|
|
}
|