Skip to content

Commit c9dc18a

Browse files
committed
Order enums alphabetically
1 parent ceae025 commit c9dc18a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/WhatsApp/ContentType.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
/// </summary>
66
public enum ContentType
77
{
8-
Document,
8+
Audio,
99
Contact,
10-
Text,
11-
Location,
10+
Document,
1211
Image,
12+
Location,
13+
Text,
1314
Video,
14-
Audio,
1515
Unknown // For the 'raw' case
1616
}

src/WhatsApp/MessageType.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ public enum MessageType
1414
/// </summary>
1515
Error,
1616
/// <summary>
17-
/// Message contains a status update.
18-
/// </summary>
19-
Status,
20-
/// <summary>
2117
/// Message contains a button reply.
2218
/// </summary>
2319
Interactive,
20+
/// <summary>
21+
/// Message contains a status update.
22+
/// </summary>
23+
Status,
2424
}

0 commit comments

Comments
 (0)