aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Serialization
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2019-10-20 15:16:01 -0400
committerGitHub <noreply@github.com>2019-10-20 15:16:01 -0400
commit91600b1c81872e1745401942633a87085dc706b5 (patch)
tree31a7135ea21ea0912d0dddf21665d22bb5e5345e /MediaBrowser.Model/Serialization
parentfdb0c3a1dff0c1e9c3c22a3be688b97ea0bd7a6d (diff)
parent5edb8159a7f8966d09cb222f366d7403a9bf723b (diff)
Merge pull request #1898 from Bond-009/jsonfix
Fix Json serialization error
Diffstat (limited to 'MediaBrowser.Model/Serialization')
-rw-r--r--MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs b/MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs
deleted file mode 100644
index b43949fe3..000000000
--- a/MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using System;
-
-namespace MediaBrowser.Model.Serialization
-{
- [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, Inherited = false, AllowMultiple = false)]
- public sealed class IgnoreDataMemberAttribute : Attribute
- {
- public IgnoreDataMemberAttribute()
- {
- }
- }
-}