mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 03:01:12 +00:00
249efd1e71
Co-authored-by: Ilkka Seppälä <iluwatar@users.noreply.github.com>
17 lines
321 B
Java
17 lines
321 B
Java
package com.iluwatar;
|
|
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* Layer super type for all Data Transfer Objects.
|
|
* Also contains code for accessing our notification.
|
|
*/
|
|
@Getter
|
|
@NoArgsConstructor
|
|
public class DataTransferObject {
|
|
|
|
private final Notification notification = new Notification();
|
|
|
|
}
|