From abdeb2cc5290217b4d95c0faf08059e5deaadf2d Mon Sep 17 00:00:00 2001 From: da3dsoul Date: Sun, 3 Nov 2024 22:30:07 -0500 Subject: [PATCH] Fix TestFilterable.cs --- Shoko.Tests/Shoko.Tests/TestFilterable.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Shoko.Tests/Shoko.Tests/TestFilterable.cs b/Shoko.Tests/Shoko.Tests/TestFilterable.cs index 054068f35..19fcb23b0 100644 --- a/Shoko.Tests/Shoko.Tests/TestFilterable.cs +++ b/Shoko.Tests/Shoko.Tests/TestFilterable.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using Shoko.Models.Enums; +using Shoko.Plugin.Abstractions.Enums; using Shoko.Server.Filters.Interfaces; namespace Shoko.Tests; @@ -18,6 +19,8 @@ public class TestFilterable : IFilterable public IReadOnlySet CustomTags { get; init; } public IReadOnlySet Years { get; init; } public IReadOnlySet<(int year, AnimeSeason season)> Seasons { get; init; } + public IReadOnlySet AvailableImageTypes { get; } + public IReadOnlySet PreferredImageTypes { get; } public bool HasTmdbLink { get; init; } public bool HasMissingTmdbLink { get; init; } public int AutomaticTmdbEpisodeLinks { get; init; }