namespace ScadaLink.Commons.Messages.Management; public record ListNotificationListsCommand; public record GetNotificationListCommand(int NotificationListId); public record CreateNotificationListCommand(string Name, IReadOnlyList RecipientEmails); public record UpdateNotificationListCommand(int NotificationListId, string Name, IReadOnlyList RecipientEmails); public record DeleteNotificationListCommand(int NotificationListId); public record ListSmtpConfigsCommand; public record UpdateSmtpConfigCommand(int SmtpConfigId, string Server, int Port, string AuthMode, string FromAddress, string? TlsMode = null, string? Credentials = null);