14 lines
325 B
C#
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; }
|
|
}
|
|
} |