添加项目文件。

This commit is contained in:
2024-07-04 17:42:03 +08:00
parent dc72862945
commit 1bd6cd358f
71 changed files with 7218 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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,
}
}