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