A few more bug fixes (#3876)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
This commit is contained in:
parent
4b9bbc5d78
commit
d909e03baf
21 changed files with 3940 additions and 45 deletions
12
API/Entities/Interfaces/IHasKPlusMetadata.cs
Normal file
12
API/Entities/Interfaces/IHasKPlusMetadata.cs
Normal 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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue