// Copyright (c) Arlo Godfrey. All Rights Reserved.
// Licensed under the GNU Lesser General Public License, Version 3.0 with additional terms.
// See the LICENSE, LICENSE.LESSER and LICENSE.ADDITIONAL files in the project root for more information.
namespace StrixMusic.Sdk.ViewModels
{
///
/// Enumeration for sort types of tracks.
///
public enum AlbumSortingType
{
///
/// Default order of the collection.
///
Unsorted,
///
/// Sort albums by name.
///
Alphanumerical,
///
/// Sort albums by date added to collection.
///
DateAdded,
///
/// Sort albums by duration.
///
Duration,
///
/// Sort albums by last played.
///
LastPlayed,
///
/// Sort albums by date published.
///
DatePublished,
}
}