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