Files
HTCloud/HT.Cloud.Domain/Entity/Common/InitEntity.cs

11 lines
245 B
C#
Raw Normal View History

2023-03-03 16:07:50 +08:00
using System.Collections.Generic;
namespace HT.Cloud.Domain
{
public class InitEntity
{
public HomeInfoEntity homeInfo { get; set; }
public LogoInfoEntity logoInfo { get; set; }
public List<MenuInfoEntity> menuInfo { get; set; }
}
}