16 lines
387 B
C#
16 lines
387 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace WaterCloud.Domain
|
|
{
|
|
public class MenuInfoEntity
|
|
{
|
|
public string title { get; set; }
|
|
public string href { get; set; }
|
|
public string icon { get; set; }
|
|
public string target { get; set; }
|
|
public List<MenuInfoEntity> child { get; set; }
|
|
}
|
|
} |