mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
15 lines
592 B
C#
15 lines
592 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Windows.Graphics.Imaging;
|
|
using Windows.UI;
|
|
|
|
namespace BetterLyrics.WinUI3.Events
|
|
{
|
|
public class AlbumArtChangedEventArgs(SoftwareBitmap? albumArtSwBitmap, List<Color> albumArtLightAccentColors, List<Color> albumArtDarkAccentColors) : EventArgs
|
|
{
|
|
public SoftwareBitmap? AlbumArtSwBitmap { get; set; } = albumArtSwBitmap;
|
|
public List<Color> AlbumArtLightAccentColors { get; set; } = albumArtLightAccentColors;
|
|
public List<Color> AlbumArtDarkAccentColors { get; set; } = albumArtDarkAccentColors;
|
|
}
|
|
}
|