Skip to content

Commit a4c12d2

Browse files
Add additional reasons for pathway plan review (#914)
1 parent 001e41c commit a4c12d2

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/Domain/Common/Enums/PathwayPlanReviewReason.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ public sealed class PathwayPlanReviewReason : SmartEnum<PathwayPlanReviewReason>
1111
public static readonly PathwayPlanReviewReason ChangeToCircumstances = new("Change Of Personal Circumstances", 3);
1212
public static readonly PathwayPlanReviewReason EndOfWingPhaseDelivery = new("End Of Wing Phase Delivery",4);
1313
public static readonly PathwayPlanReviewReason NinetyDayReview = new("90 Day Review", 5);
14+
public static readonly PathwayPlanReviewReason InitialReview = new ("Initial Review", 6);
15+
public static readonly PathwayPlanReviewReason Reassignment = new("Reassignment", 7);
1416

1517
private PathwayPlanReviewReason(string name, int value)
1618
: base(name, value)
@@ -26,6 +28,8 @@ private PathwayPlanReviewReason(string name, int value)
2628
AssessmentPerformed,
2729
ChangeToCircumstances,
2830
EndOfWingPhaseDelivery,
29-
ParticipantChangedLocation
31+
InitialReview,
32+
ParticipantChangedLocation,
33+
Reassignment
3034
};
3135
}

0 commit comments

Comments
 (0)