Files
CapMachine/CapMachine.Model/ConfigValueType.cs
2024-07-04 17:42:03 +08:00

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,
}
}