mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:24:55 +08:00
12 lines
225 B
C#
12 lines
225 B
C#
// 2025/6/23 by Zhe Fang
|
|
|
|
using System;
|
|
|
|
namespace BetterLyrics.WinUI3.Events
|
|
{
|
|
public class IsPlayingChangedEventArgs(bool isPlaying) : EventArgs
|
|
{
|
|
public bool IsPlaying { get; set; } = isPlaying;
|
|
}
|
|
}
|