PredictReason.cs 329 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.Serialization;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace IntelligentControlForsx.Model
  8. {
  9. public enum PredictReason
  10. {
  11. Weather = 0,
  12. HealthStatus = 1,
  13. JobPlan = 2,
  14. Misc = 3
  15. }
  16. }