14 lines
378 B
C#
14 lines
378 B
C#
|
|
namespace RIZO.Client.Entity
|
|||
|
|
{
|
|||
|
|
public class MenuEntity
|
|||
|
|
{
|
|||
|
|
public int MenuId { get; set; }
|
|||
|
|
public string MenuHeader { get; set; }
|
|||
|
|
public string TargetView { get; set; }
|
|||
|
|
public int ParentId { get; set; }
|
|||
|
|
public string MenuIcon { get; set; }
|
|||
|
|
public int Index { get; set; }
|
|||
|
|
public int MenuType { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|