mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:24:55 +08:00
- Add album text in lyrics render - Improve song info update and draw algo - Upgrade to .NET 10
11 lines
242 B
C#
11 lines
242 B
C#
using BetterLyrics.WinUI3.Models;
|
|
using System;
|
|
|
|
namespace BetterLyrics.WinUI3.Events
|
|
{
|
|
public class LyricsChangedEventArgs(LyricsData? lyricsData) : EventArgs
|
|
{
|
|
public LyricsData? LyricsData { get; } = lyricsData;
|
|
}
|
|
}
|