mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:08:33 +08:00
20 lines
366 B
C#
20 lines
366 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterLyrics.WinUI3.Enums
|
|
{
|
|
public enum ShortcutID
|
|
{
|
|
LyricsWindowShowOrHide,
|
|
Borderless,
|
|
ClickThrough,
|
|
LyricsWindowSwitch,
|
|
PlayOrPauseSong,
|
|
NextSong,
|
|
PreviousSong,
|
|
}
|
|
}
|