Files
gtav-src/tools_ng/bin/CruiseControl/WebDashboard/MVC/View/IVelocityTransformer.cs
T
2025-09-29 00:52:08 +02:00

10 lines
212 B
C#
Executable File

using System.Collections;
namespace ThoughtWorks.CruiseControl.WebDashboard.MVC.View
{
public interface IVelocityTransformer
{
string Transform(string templateName, Hashtable velocityContext);
}
}