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
10 lines
265 B
C#
10 lines
265 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace BetterLyrics.WinUI3.ViewModels
|
|
{
|
|
public partial class LyricsWindowSwitchWindowViewModel : BaseViewModel
|
|
{
|
|
[ObservableProperty] public partial float RootGridOpacity { get; set; } = 1;
|
|
}
|
|
}
|