You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/tests/Recyclarr.Cli.TestLibrary/CfCache.cs

15 lines
342 B

using Recyclarr.Cli.Pipelines.CustomFormat.Cache;
namespace Recyclarr.Cli.TestLibrary;
public static class CfCache
{
public static CustomFormatCache New(params TrashIdMapping[] mappings)
{
return new CustomFormatCache(new CustomFormatCacheObject
{
TrashIdMappings = mappings.ToList()
});
}
}