2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Serialization
|
|
|
|
{
|
|
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, Inherited = false, AllowMultiple = false)]
|
|
|
|
public sealed class IgnoreDataMemberAttribute : Attribute
|
|
|
|
{
|
|
|
|
public IgnoreDataMemberAttribute()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|