using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CapMachine.Model { public enum ConfigValueType { /// /// 常值 /// Constant = 1, /// /// 斜坡 /// Slope = 2, } }