* split settings into multiple pages * show health check badge in nav menu * undo transcoding test changes
6 lines
128 B
C#
6 lines
128 B
C#
using MediatR;
|
|
|
|
namespace ErsatzTV.Core.Health;
|
|
|
|
public record HealthCheckSummary(int Warnings, int Errors) : INotification;
|