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