Readded custom serialisation

This commit is contained in:
JPVenson
2024-10-10 18:01:14 +00:00
parent ea4c208fde
commit 439a997fca
15 changed files with 79 additions and 7 deletions

View File

@@ -0,0 +1,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
{
}