mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-13 03:34:55 +08:00
- Add album text in lyrics render - Improve song info update and draw algo - Upgrade to .NET 10
15 lines
230 B
C#
15 lines
230 B
C#
using ATL;
|
|
|
|
namespace BetterLyrics.WinUI3.Models
|
|
{
|
|
public class PlayQueueItem
|
|
{
|
|
public Track Track { get; set; }
|
|
|
|
public PlayQueueItem(Track track)
|
|
{
|
|
Track = track;
|
|
}
|
|
}
|
|
}
|