-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy pathAcknowledgmentCode.cs
More file actions
43 lines (37 loc) · 895 Bytes
/
AcknowledgmentCode.cs
File metadata and controls
43 lines (37 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
namespace NHapi.Base
{
using System.ComponentModel;
public enum AcknowledgmentCode
{
/// <summary>
/// Application Accept
/// </summary>
[Description("Application Accept")]
AA = 1,
/// <summary>
/// Application Error
/// </summary>
[Description("Application Error")]
AE = 2,
/// <summary>
/// Application Reject
/// </summary>
[Description("Application Reject")]
AR = 3,
/// <summary>
/// Commit Accept
/// </summary>
[Description("Commit Accept")]
CA = 5,
/// <summary>
/// Commit Error
/// </summary>
[Description("Commit Error")]
CE = 6,
/// <summary>
/// Commit Reject
/// </summary>
[Description("Commit Reject")]
CR = 7,
}
}