You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
535 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MenuTool
{
public class SysMenu
{
public int id { get; set; }
public int ModuleNo { get; set; }
public string ModuleName { get; set; }
public string ModuleUrl { get; set; }
public int ParentModuleNo { get; set; }
public string SortNo { get; set; }
public int Layer { get; set; }
public int PopedomType { get; set; }
public int IsUse { get; set; }
}
}