You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
470 B
28 lines
470 B
namespace AuroraDesk.Core.Entities;
|
|
|
|
/// <summary>
|
|
/// 节点附件圆显示模式
|
|
/// </summary>
|
|
public enum ConnectorAttachmentMode
|
|
{
|
|
/// <summary>
|
|
/// 不显示附件圆
|
|
/// </summary>
|
|
None,
|
|
|
|
/// <summary>
|
|
/// 仅显示左侧附件圆
|
|
/// </summary>
|
|
LeftOnly,
|
|
|
|
/// <summary>
|
|
/// 仅显示右侧附件圆
|
|
/// </summary>
|
|
RightOnly,
|
|
|
|
/// <summary>
|
|
/// 左右两侧都显示附件圆
|
|
/// </summary>
|
|
Both
|
|
}
|
|
|
|
|