Files
HTCloud/HT.Cloud.Domain/Entity/Common/InitEntity.cs
2023-03-03 16:07:50 +08:00

11 lines
245 B
C#

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