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

12 lines
324 B
C#
Executable File

using System.Web;
using ThoughtWorks.CruiseControl.WebDashboard.IO;
namespace ThoughtWorks.CruiseControl.WebDashboard.MVC
{
public interface IResponse
{
void Process(HttpResponse response);
// TODO: Getter only needed for testing
ConditionalGetFingerprint ServerFingerprint { get; set; }
}
}