15 lines
250 B
C#
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, //关联菜单
|
|
}
|
|
}
|