namespace Harmonia.Core.Playlists;
public enum PlaylistUpdateAction
{
///
/// An item was added to the collection.
///
Add,
///
/// An item was removed from the collection.
///
Remove,
///
/// An item was moved within the collection.
///
Move,
///
/// The contents of the collection changed dramatically.
///
Reset
}