aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasProductionLocations.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasProductionLocations.cs')
-rw-r--r--MediaBrowser.Controller/Entities/IHasProductionLocations.cs34
1 files changed, 34 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasProductionLocations.cs b/MediaBrowser.Controller/Entities/IHasProductionLocations.cs
new file mode 100644
index 000000000..e4652fa8d
--- /dev/null
+++ b/MediaBrowser.Controller/Entities/IHasProductionLocations.cs
@@ -0,0 +1,34 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+
+namespace MediaBrowser.Controller.Entities
+{
+ /// <summary>
+ /// Interface IHasProductionLocations
+ /// </summary>
+ public interface IHasProductionLocations
+ {
+ /// <summary>
+ /// Gets or sets the production locations.
+ /// </summary>
+ /// <value>The production locations.</value>
+ List<string> ProductionLocations { get; set; }
+ }
+
+ public static class ProductionLocationExtensions
+ {
+ public static void AddProductionLocation(this IHasProductionLocations item, string name)
+ {
+ if (string.IsNullOrWhiteSpace(name))
+ {
+ throw new ArgumentNullException("name");
+ }
+
+ if (!item.ProductionLocations.Contains(name, StringComparer.OrdinalIgnoreCase))
+ {
+ item.ProductionLocations.Add(name);
+ }
+ }
+ }
+}