mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-24 00:36:41 +08:00
14 lines
290 B
C#
14 lines
290 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace HZH_Controls.Controls
|
|
{
|
|
public class CrumbNavigationClickEventArgs : EventArgs
|
|
{
|
|
public int Index { get; set; }
|
|
public CrumbNavigationItem Item { get; set; }
|
|
}
|
|
}
|