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

14 lines
325 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WaterCloud.Domain
{
public class InitEntity
{
public HomeInfoEntity homeInfo { get; set; }
public LogoInfoEntity logoInfo { get; set; }
public List<MenuInfoEntity> menuInfo { get; set; }
}
}