12 lines
188 B
C#
Executable File
12 lines
188 B
C#
Executable File
|
|
namespace ThoughtWorks.CruiseControl.WebDashboard.Dashboard
|
|
{
|
|
public interface IAbsoluteLink
|
|
{
|
|
string Text { get; }
|
|
string Url { get; }
|
|
|
|
string LinkClass { set; }
|
|
}
|
|
}
|