aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MetadataField.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-12-24 18:28:27 +0100
committerBond_009 <bond.009@outlook.com>2021-12-24 18:28:27 +0100
commitcbfa355e31ec7a78ef73bbde5566fb2b3424363e (patch)
tree7d6dd095e025b5918fca1fcc5d354012bd4cc428 /MediaBrowser.Model/Entities/MetadataField.cs
parent2e7d173188cc755ed56b8a45e3b18206afdc4b91 (diff)
Update StyleCop
Diffstat (limited to 'MediaBrowser.Model/Entities/MetadataField.cs')
-rw-r--r--MediaBrowser.Model/Entities/MetadataField.cs53
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
+ }
+}