using System;
using System.Collections.Generic;
using System.Text;
namespace StrixMusic.Shells.ZuneDesktop.Controls.Views.Collection
{
///
/// Available sorting states for Zune Collection View.
///
public enum ZuneSortState
{
// NOTE: MORE STATES TO BE ADDED.
///
/// Alphabetical sorting in ascending order.
///
AZ,
///
/// Alphabetical sorting in descending order.
///
ZA,
///
/// Groups the collection by artists.
///
Artists,
///
/// Groups the collection by release year.
///
ReleaseYear,
///
/// Sorts the collection by added date.
///
DateAdded,
}
}