mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-09-29 15:30:50 -04:00
13 lines
304 B
C#
13 lines
304 B
C#
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; }
|
|
}
|