common/Service/MeterProcessState/Areas/HelpPage/SampleGeneration/SampleDirection.cs
2026-04-23 17:50:07 +02:00

11 lines
242 B
C#

namespace Service.MeterProcessState.Areas.HelpPage
{
/// <summary>
/// Indicates whether the sample is used for request or response
/// </summary>
public enum SampleDirection
{
Request = 0,
Response
}
}