6 lines
126 B
Java
6 lines
126 B
Java
package notificationSendingStrategies;
|
|
|
|
public interface SendNotificationStrategy {
|
|
String makeContent(String message);
|
|
}
|