CrumbNavigationItem.cs 321 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. namespace HZH_Controls.Controls
  7. {
  8. public class CrumbNavigationItem
  9. {
  10. public string Key { get; set; }
  11. public string Text { get; set; }
  12. public Color? ItemColor { get; set; }
  13. }
  14. }