initial commit
[CPE_learningsite] / CPE / CPE.App / CPE.App.NotifyConsole / Models / Enums / DispositionProcessingStates.cs
1 /*
2 Developer: Tyler Allen
3 Date Created: 08/24/2016
4 ---------------------------------------------------
5 */
6
7 namespace CPE.App.NotifyConsole.Models.Enums {
8     public enum DispositionProcessingStates {
9         NotStarted = 0,
10         InProgress = 1,
11         Finished = 2
12     }
13 }