Skip to content

Commit

Permalink
feat: adding Pojo's
Browse files Browse the repository at this point in the history
  • Loading branch information
Hafflgav committed Jan 19, 2024
1 parent 2171fd5 commit cba5a58
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
package miranum.notification.customer.domain;

import lombok.AllArgsConstructor;
import lombok.Getter;

@AllArgsConstructor
@Getter
public class Customer {
private final String name;
private final String number;
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
package miranum.notification.customer.domain;

import lombok.AllArgsConstructor;
import lombok.Getter;

@AllArgsConstructor
@Getter
public class Notification {
private final String notificationMethod;
private final String topic;
private final String message;
private final Customer customer;
}

0 comments on commit cba5a58

Please sign in to comment.