12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Threading.Tasks;
- namespace IntelligentControlForsx.Model
- {
- public enum PredictReason
- {
- Weather = 0,
- HealthStatus = 1,
- JobPlan = 2,
- Misc = 3
- }
- }
|