7 lines
238 B
C#
7 lines
238 B
C#
namespace Harmonia.Core.Playlists;
|
|
|
|
public class PlaylistSaveFailedEventArgs(Playlist playlist, Exception exception) : EventArgs
|
|
{
|
|
public Playlist Playlist { get; } = playlist;
|
|
public Exception Exception { get; } = exception;
|
|
} |