mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
20 lines
743 B
C#
20 lines
743 B
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="StepKeys.cs" company="Daniel Dabrowski - rod.42n.pl">
|
|
// Copyright (c) 2008 Daniel Dabrowski - 42n. All rights reserved.
|
|
// </copyright>
|
|
// <summary>
|
|
// Defines the StepKeys type.
|
|
// </summary>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
namespace Four2n.Orchard.MiniProfiler
|
|
{
|
|
public class StepKeys
|
|
{
|
|
public const string ActionFilter = "ActionFilter";
|
|
|
|
public const string ResultFilter = "ResultFilter";
|
|
|
|
public const string ShapeProfiling = "ShapeProfiling";
|
|
}
|
|
} |