yl
2023-03-29 4f57c3e602eef9ec929a2315183fa28b21cd0987
1
2
3
4
5
6
7
8
9
10
11
namespace $rootnamespace$.Areas.HelpPage
{
    /// <summary>
    /// Indicates whether the sample is used for request or response
    /// </summary>
    public enum SampleDirection
    {
        Request = 0,
        Response
    }
}