Subversion Repository Public Repository

WOX2

Diff Revisions 13 vs 14 for /trunk/CSharp/tests/ClaimPortal/Requests/PatientIDType.cs

Diff revisions: vs.
  @@ -1,11 +1,30 @@
1 + /// <header>
2 + /// <wox>
3 + /// <version>1.0</version>
4 + /// <author>Carlos R. Jaimez Gonzalez</author>
5 + /// <author>Simon M. Lucas</author>
6 + /// <site>http://woxserializer.sourceforge.net/</site>
7 + /// </wox>
8 + /// <wox>
9 + /// <version>1.5</version>
10 + /// <author>Steven M Lewis</author>
11 + /// </wox>
12 + /// <wox>
13 + /// <version>2.0</version>
14 + /// <author>George A Smith</author>
15 + /// <svn>http://woxserializer.sourceforge.net/</svn>
16 + /// <note>XML form for vs 2 is more compact and therefor incompatible with vs 1</note>
17 + /// </wox>
18 + /// </header>
19 +
1 20 namespace ClaimPortal.Requests
2 21 {
3 - public enum PatientIDType : byte
4 - {
5 - Unspecified = 0,
6 - Ssn = 1,
7 - DriversLicense = 2,
8 - MilitaryId = 3,
9 - Other = 99
10 - }
22 + public enum PatientIDType : byte
23 + {
24 + Unspecified = 0,
25 + Ssn = 1,
26 + DriversLicense = 2,
27 + MilitaryId = 3,
28 + Other = 99
29 + }
11 30 }