mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-24 08:46:35 +08:00
16 lines
324 B
C#
16 lines
324 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Drawing;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace HZH_Controls.Controls
|
|||
|
|
{
|
|||
|
|
public class CrumbNavigationItem
|
|||
|
|
{
|
|||
|
|
public string Key { get; set; }
|
|||
|
|
public string Text { get; set; }
|
|||
|
|
public Color? ItemColor { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|