mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-03-04 02:39:22 +00:00
11 lines
238 B
C#
11 lines
238 B
C#
|
namespace pnp.api.contosoorders.Areas.HelpPage
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Indicates whether the sample is used for request or response
|
||
|
/// </summary>
|
||
|
public enum SampleDirection
|
||
|
{
|
||
|
Request = 0,
|
||
|
Response
|
||
|
}
|
||
|
}
|