Files
CMLeonOS/Gui/UILib/ShortcutBarCell.cs

18 lines
340 B
C#
Raw Normal View History

2026-03-01 17:03:49 +08:00
using System;
namespace CMLeonOS.Gui.UILib
{
internal class ShortcutBarCell
{
internal ShortcutBarCell(string text, Action onClick)
{
Text = text;
OnClick = onClick;
}
internal string Text { get; set; } = string.Empty;
internal Action OnClick { get; set; }
}
}