23 lines
366 B
C#
23 lines
366 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Model
|
|
{
|
|
public enum ConfigValueType
|
|
{
|
|
/// <summary>
|
|
/// 常值
|
|
/// </summary>
|
|
Constant = 1,
|
|
|
|
/// <summary>
|
|
/// 斜坡
|
|
/// </summary>
|
|
Slope = 2,
|
|
|
|
}
|
|
}
|