2022-10-20 17:12:54 +08:00

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; }
}
}