Add missing documentation, and pull indentation in by one.
This commit is contained in:
parent
77241fdbb3
commit
57ba670952
1 changed files with 19 additions and 8 deletions
|
@ -31,8 +31,19 @@ namespace Bind.Structures
|
|||
/// </summary>
|
||||
public enum FlowDirection
|
||||
{
|
||||
/// <summary>
|
||||
/// No defined flow.
|
||||
/// </summary>
|
||||
Undefined = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Input parameter.
|
||||
/// </summary>
|
||||
In,
|
||||
|
||||
/// <summary>
|
||||
/// Output parameter, typically decorated with the out keyword.
|
||||
/// </summary>
|
||||
Out
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue