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.
18 lines
371 B
18 lines
371 B
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);
|