IgnoreDataMemberAttribute.cs 314 B

123456789101112
  1. using System;
  2. namespace MediaBrowser.Model.Serialization
  3. {
  4. [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, Inherited = false, AllowMultiple = false)]
  5. public sealed class IgnoreDataMemberAttribute : Attribute
  6. {
  7. public IgnoreDataMemberAttribute()
  8. {
  9. }
  10. }
  11. }