105040 Update 添加默认值

This commit is contained in:
lihanbo 2024-12-23 11:58:23 +08:00
parent 32f3bc54b5
commit 8e1612b873
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ namespace Sinvo.EplanHpD.Plugin.WPFUI.Enum
public enum ConnectionType
{
[Description("直通")]
Passthrough,
Passthrough = 0,
[Description("全段")]
FullParagraph
FullParagraph = 1
}
}