* fix crashes caused by decimal separator * improvements to playout reset ui * remove code quality workflow
6 lines
144 B
C#
6 lines
144 B
C#
using MediatR;
|
|
|
|
namespace ErsatzTV.Core.Notifications;
|
|
|
|
public record PlayoutUpdatedNotification(int PlayoutId, bool IsLocked) : INotification;
|