aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-21 22:08:34 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-21 22:08:34 -0400
commitc7f559f8cefa4c4b90df3bff72290c8bd5b18e01 (patch)
tree4d26b4995e7df5d44c39d76ba58db66f1e48dbc4 /MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs
parentf8c603d5ebc28e03140df4f1b155c97b387f09a5 (diff)
make model project portable
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()
+ {
+ }
+ }
+}