aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Serialization/IgnoreDataMemberAttribute.cs
blob: b43949fe38b639768c1fce430ad537bfd3465f93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace MediaBrowser.Model.Serialization
{
    [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, Inherited = false, AllowMultiple = false)]
    public sealed class IgnoreDataMemberAttribute : Attribute
    {
        public IgnoreDataMemberAttribute()
        {
        }
    }
}