I have a Blazor Server app on which users can subscribe to an asset and whenever the asset changes the UI is updated. That already works.
Now I would like to implement a feature that when change's severity is "Critical" not only the UI updates but the user also gets a push notification. Let's assume that a change is represented with such class:
public class MyChange
{
public string Severity { get; set; }
}
Is this even possible with Blazor Server, if so then how? Or should I use Blazor WebAssembly?

