Add option to disable caching for a specific content type

This commit is contained in:
Stone_Red
2024-06-04 16:09:34 +02:00
parent 7bb7a174ed
commit 32037ffcf8
@@ -10,5 +10,7 @@ public abstract class ContentViewModelBase(string title)
public string RawContent { get; init; } = string.Empty;
public bool Cacheable { get; init; } = true;
public Logger Logger => GlobalState.Logger;
}