mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
10 lines
188 B
C#
10 lines
188 B
C#
namespace LanMountainDesktop.Models;
|
|
|
|
public sealed record TaskbarActionItem(
|
|
TaskbarActionId Id,
|
|
string Title,
|
|
string IconKey,
|
|
bool IsVisible,
|
|
string CommandKey);
|
|
|