Files
GeekDesk/Constant/MenuType.cs
2023-03-21 17:18:18 +08:00

15 lines
250 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GeekDesk.Constant
{
public enum MenuType
{
NORMAL, //普通菜单
LINK, //关联菜单
}
}