diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-12-25 18:46:08 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-25 18:46:08 +0000 |
| commit | d594f81f65eb24d80ac4988c181bc099e8ec7c38 (patch) | |
| tree | b007ea28b081f65cf7ba2a407d3f67c4b78b5e8a /MediaBrowser.Model/Entities/MetadataField.cs | |
| parent | 60e75f7b700bb8ddc52d937892e2fcdaa57b9d6a (diff) | |
| parent | cbfa355e31ec7a78ef73bbde5566fb2b3424363e (diff) | |
Merge pull request #7048 from Bond-009/warn56
Diffstat (limited to 'MediaBrowser.Model/Entities/MetadataField.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/MetadataField.cs | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/MetadataField.cs b/MediaBrowser.Model/Entities/MetadataField.cs new file mode 100644 index 000000000..2cc6c8e33 --- /dev/null +++ b/MediaBrowser.Model/Entities/MetadataField.cs @@ -0,0 +1,53 @@ +namespace MediaBrowser.Model.Entities +{ + /// <summary> + /// Enum MetadataFields. + /// </summary> + public enum MetadataField + { + /// <summary> + /// The cast. + /// </summary> + Cast, + + /// <summary> + /// The genres. + /// </summary> + Genres, + + /// <summary> + /// The production locations. + /// </summary> + ProductionLocations, + + /// <summary> + /// The studios. + /// </summary> + Studios, + + /// <summary> + /// The tags. + /// </summary> + Tags, + + /// <summary> + /// The name. + /// </summary> + Name, + + /// <summary> + /// The overview. + /// </summary> + Overview, + + /// <summary> + /// The runtime. + /// </summary> + Runtime, + + /// <summary> + /// The official rating. + /// </summary> + OfficialRating + } +} |
