Allow K+ to override data it has set itself Fixes #3632 #3836

This commit is contained in:
Amelia 2025-06-26 20:13:09 +02:00
parent 994e5d4d83
commit cbbd2f301e
14 changed files with 3908 additions and 31 deletions

View file

@ -0,0 +1,12 @@
using System.Collections.Generic;
using API.Entities.MetadataMatching;
namespace API.Entities.Interfaces;
public interface IHasKPlusMetadata
{
/// <summary>
/// Tracks which metadata has been set by K+
/// </summary>
public IList<MetadataSettingField> KPlusOverrides { get; set; }
}