diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
| commit | 767cdc1f6f6a63ce997fc9476911e2c361f9d402 (patch) | |
| tree | 49add55976f895441167c66cfa95e5c7688d18ce /MediaBrowser.Controller/Sorting/SortOrder.cs | |
| parent | 845554722efaed872948a9e0f7202e3ef52f1b6e (diff) | |
Pushing missing changes
Diffstat (limited to 'MediaBrowser.Controller/Sorting/SortOrder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Sorting/SortOrder.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Sorting/SortOrder.cs b/MediaBrowser.Controller/Sorting/SortOrder.cs new file mode 100644 index 000000000..3152ac67e --- /dev/null +++ b/MediaBrowser.Controller/Sorting/SortOrder.cs @@ -0,0 +1,33 @@ + +namespace MediaBrowser.Controller.Sorting { + /// <summary> + /// Enum SortOrder + /// </summary> + public enum SortOrder { + + /// <summary> + /// Sort by name + /// </summary> + Name, + /// <summary> + /// Sort by date added to the library + /// </summary> + Date, + /// <summary> + /// Sort by community rating + /// </summary> + Rating, + /// <summary> + /// Sort by runtime + /// </summary> + Runtime, + /// <summary> + /// Sort by year + /// </summary> + Year, + /// <summary> + /// Custom sort order added by plugins + /// </summary> + Custom + } +} |
