Files
harmonia/Harmonia.Core/Playlists/PlaylistUpdateAction.cs

27 lines
604 B
C#

namespace Harmonia.Core.Playlists;
public enum PlaylistUpdateAction
{
/// <summary>
/// An item was added to the collection.
/// </summary>
Add,
/// <summary>
/// An item was removed from the collection.
/// </summary>
Remove,
/// <summary>
/// An item was moved within the collection.
/// </summary>
Move,
/// <summary>
/// The contents of the collection changed dramatically.
/// </summary>
Reset,
/// <summary>
/// The tags of the songs in the collection were refreshed.
/// </summary>
Refresh,
Lock,
Unlock
}