Files
2025-03-05 19:42:01 +08:00

11 lines
247 B
C#

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