|
|
|
@ -8,6 +8,7 @@ namespace Lidarr.Api.V1.Config
|
|
|
|
|
public string MetadataSource { get; set; }
|
|
|
|
|
public WriteAudioTagsType WriteAudioTags { get; set; }
|
|
|
|
|
public bool ScrubAudioTags { get; set; }
|
|
|
|
|
public bool EmbedCoverArt { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static class MetadataProviderConfigResourceMapper
|
|
|
|
@ -19,6 +20,7 @@ namespace Lidarr.Api.V1.Config
|
|
|
|
|
MetadataSource = model.MetadataSource,
|
|
|
|
|
WriteAudioTags = model.WriteAudioTags,
|
|
|
|
|
ScrubAudioTags = model.ScrubAudioTags,
|
|
|
|
|
EmbedCoverArt = model.EmbedCoverArt,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|