namespace DataModel.Models { /// /// Status of search /// public enum SearchStatus { New = 0, Submitted = 1, Started = 2, Ended = 3, Error = 4 } }