chenn
2025-03-28 9dba1b6adc0bbb4aa8cc531f4e6d822bf1a56be3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DPumpHydr.WinFrmUI.Volute.ViewModel
{
    public enum eOutflowShapeStyle
    {
        未知=-1,
        中心出口 = 0,
        侧面出口 = 1,
        侧面出口_直线连接 = 2
    }
    public enum eOutflowLinkStyle
    { 
        曲线 = 0,
        直线圆弧 = 1, 
    }
}