RequiresSourceSerialisationAttribute.cs 336 B

1234567891011
  1. using System;
  2. namespace MediaBrowser.Common;
  3. /// <summary>
  4. /// Marks a BaseItem as needing custom serialisation from the Data field of the db.
  5. /// </summary>
  6. [System.AttributeUsage(System.AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
  7. public sealed class RequiresSourceSerialisationAttribute : System.Attribute
  8. {
  9. }