diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-08 19:31:44 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-08 19:31:44 -0400 |
| commit | d091fe0e6e5923bd0ce597c83d9a76650e3dc7f9 (patch) | |
| tree | a6f90d896b7b22d4cb8f9041af79b36a1cc1f061 /MediaBrowser.Model/Channels/ChannelItemSortField.cs | |
| parent | bebba65d6137125d459a911b695131c063524c56 (diff) | |
extract classes
Diffstat (limited to 'MediaBrowser.Model/Channels/ChannelItemSortField.cs')
| -rw-r--r-- | MediaBrowser.Model/Channels/ChannelItemSortField.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Channels/ChannelItemSortField.cs b/MediaBrowser.Model/Channels/ChannelItemSortField.cs new file mode 100644 index 000000000..6b5015b77 --- /dev/null +++ b/MediaBrowser.Model/Channels/ChannelItemSortField.cs @@ -0,0 +1,13 @@ +namespace MediaBrowser.Model.Channels +{ + public enum ChannelItemSortField + { + Name = 0, + CommunityRating = 1, + PremiereDate = 2, + DateCreated = 3, + Runtime = 4, + PlayCount = 5, + CommunityPlayCount = 6 + } +}
\ No newline at end of file |
