tx
2025-04-11 e8260697137f503aa0170b7a36170fd7168e9b80
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, 
    }
}