refactor: Fix analysis warning about unused member

pull/231/head
Robert Dailey 1 year ago
parent e99f4cb766
commit cad281aefc

@ -1,3 +1,4 @@
using JetBrains.Annotations;
using Recyclarr.Cli.Cache; using Recyclarr.Cli.Cache;
namespace Recyclarr.Cli.Pipelines.CustomFormat.Cache; namespace Recyclarr.Cli.Pipelines.CustomFormat.Cache;
@ -7,5 +8,5 @@ public record TrashIdMapping(string TrashId, string CustomFormatName, int Custom
[CacheObjectName("custom-format-cache")] [CacheObjectName("custom-format-cache")]
public record CustomFormatCacheData( public record CustomFormatCacheData(
int Version, int Version,
string InstanceName, [UsedImplicitly] string InstanceName,
IReadOnlyCollection<TrashIdMapping> TrashIdMappings); IReadOnlyCollection<TrashIdMapping> TrashIdMappings);

Loading…
Cancel
Save