initial commit
[CPE_learningsite] / CPE / CPE.App / CPE.App.Notify / Models / Enums / ParticipantResult.cs
1 /*
2 Developer: Tyler Allen
3 Date Created: 08/24/2016
4 ---------------------------------------------------
5 */
6
7 namespace CPE.App.Notify.Models.Enums {
8     public enum ParticipantResults {
9         Pass,
10         Fail,
11         Ineligible,
12         Wonky //instead of throwing an error if something is null, we'll ask the client to contact cust service
13     }
14 }