Skip to content

Commit

Permalink
Rescale ForumType enums to allow new versions to stay together.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinematics committed May 11, 2024
1 parent 145f2e0 commit a94e704
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions NetTally.Core/Enums/ForumType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
public enum ForumType
{
Unknown,
XenForo1,
XenForo2,
vBulletin3,
vBulletin4,
vBulletin5,
phpBB,
NodeBB
XenForo1 = 1,
XenForo2 = 2,
vBulletin3 = 10,
vBulletin4 = 11,
vBulletin5 = 12,
vBulletin6 = 13,
phpBB = 20,
NodeBB = 30
}

0 comments on commit a94e704

Please sign in to comment.