Remove RetroApplyTags property from ProviderResource.

The RetroApplyTags property has been removed to streamline the ProviderResource class. This change will help to reduce unnecessary attributes, simplifying the overall codebase.
This commit is contained in:
scphantm 2024-10-13 10:48:13 -04:00
parent 8730c26de0
commit f18af2aca8

View file

@ -16,7 +16,6 @@ public class ProviderResource<T> : RestResource
public string InfoLink { get; set; }
public ProviderMessage Message { get; set; }
public HashSet<int> Tags { get; set; }
public bool RetroApplyTags { get; set; }
public List<T> Presets { get; set; }
}