11 lines
251 B
Java
11 lines
251 B
Java
package entities;
|
|
|
|
import utils.SendNotificationStrategy;
|
|
|
|
public class SmsNotification extends Notification {
|
|
|
|
public SmsNotification(String content, User user, SendNotificationStrategy strategy) {
|
|
super(content, user, strategy);
|
|
}
|
|
}
|