aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs')
-rw-r--r--MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs b/MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs
new file mode 100644
index 000000000..8e23edc24
--- /dev/null
+++ b/MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace MediaBrowser.Model.Serialization
+{
+ [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, Inherited = false, AllowMultiple = false)]
+ public sealed class IgnoreDataMemberAttribute : Attribute
+ {
+ public IgnoreDataMemberAttribute()
+ {
+ }
+ }
+}