namespace MediaBrowser.Controller.Sorting {
///
/// Enum SortOrder
///
public enum SortOrder {
///
/// Sort by name
///
Name,
///
/// Sort by date added to the library
///
Date,
///
/// Sort by community rating
///
Rating,
///
/// Sort by runtime
///
Runtime,
///
/// Sort by year
///
Year,
///
/// Custom sort order added by plugins
///
Custom
}
}