diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-02-24 02:05:12 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-02-24 02:05:12 +0100 |
| commit | 914e891689af38911332d14b18b4a1b4834cd9ae (patch) | |
| tree | 5b4b3971a2840027e2de539d2a2c7527b135bb13 /MediaBrowser.Model/Entities/CollectionTypeOptions.cs | |
| parent | 92e5a5c6e8a81c3d604a943628fcb56f3778b042 (diff) | |
Fix unchecked input
Diffstat (limited to 'MediaBrowser.Model/Entities/CollectionTypeOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/CollectionTypeOptions.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/CollectionTypeOptions.cs b/MediaBrowser.Model/Entities/CollectionTypeOptions.cs new file mode 100644 index 000000000..d7615a7ed --- /dev/null +++ b/MediaBrowser.Model/Entities/CollectionTypeOptions.cs @@ -0,0 +1,15 @@ +#pragma warning disable CS1591 + +namespace MediaBrowser.Model.Entities +{ + public enum CollectionTypeOptions + { + Movies, + Music, + TvShows, + Books, + HomeVideos, + MusicVideos, + Mixed + } +} |
