Skip to content

Commit

Permalink
Merge pull request #520 from DFE-Digital/bugfix/decision-maker-enum
Browse files Browse the repository at this point in the history
bugfix - enum DeputyDirector and Grade6 wrong way round
  • Loading branch information
dneed-nimble authored Jul 9, 2024
2 parents d97ad06 + f90244a commit 35653c9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ public enum DecisionMadeBy
RegionalDirectorForRegion = 0,
OtherRegionalDirector = 1,
Minister = 2,
DirectorGeneral = 3,
Grade6 = 4,
DeputyDirector = 5,
DirectorGeneral = 3,
DeputyDirector = 4,
Grade6 = 5,
None = 6,
}

0 comments on commit 35653c9

Please sign in to comment.