2024-08-28 00:54:33 +08:00
|
|
|
|
// Licensed to the .NET Foundation under one or more agreements.
|
|
|
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
|
|
|
namespace AntDesign.Docs
|
2020-05-10 15:42:02 +08:00
|
|
|
|
{
|
2020-05-18 14:46:42 +08:00
|
|
|
|
public class DemoMenuItem
|
2020-05-10 15:42:02 +08:00
|
|
|
|
{
|
2024-04-19 20:28:55 +08:00
|
|
|
|
public float Order { get; set; }
|
2020-05-10 15:42:02 +08:00
|
|
|
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
|
|
public string SubTitle { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Url { get; set; }
|
|
|
|
|
|
2020-07-28 11:15:41 +08:00
|
|
|
|
public string Cover { get; set; }
|
|
|
|
|
|
2020-05-18 14:46:42 +08:00
|
|
|
|
public DemoMenuItem[] Children { get; set; }
|
2020-05-10 15:42:02 +08:00
|
|
|
|
}
|
2020-05-18 14:46:42 +08:00
|
|
|
|
}
|