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

14 lines
223 B
C#

namespace HT.Cloud.Domain
{
public class HomeInfoEntity
{
public string title { get; set; }
public string href { get; set; }
public HomeInfoEntity()
{
title = "首页";
href = "../Home/Default";
}
}
}