blob: 65f762060b261ec8b19abd4ff08fa0e8925fc0fa (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package eu.ortlepp.notificationsender.model;
/**
* The expected input data of the Lambda.
*
* @param messages The messages / notifications
*/
public record Notifications(String[] messages) {}
|