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.
14 lines
368 B
14 lines
368 B
using JetBrains.Annotations;
|
|
using Recyclarr.Cache;
|
|
|
|
namespace Recyclarr.Tests.Cache;
|
|
|
|
[CacheObjectName("test-cache")]
|
|
public record TestCacheObject() : CacheObject(LatestVersion)
|
|
{
|
|
public new const int LatestVersion = 1;
|
|
public string? ExtraData { [UsedImplicitly] get; init; }
|
|
}
|
|
|
|
public class TestCache(TestCacheObject cacheObject) : BaseCache(cacheObject);
|