22 lines
397 B
Java
22 lines
397 B
Java
package net.gepafin.tendermanagement.model.response;
|
|
|
|
import lombok.Data;
|
|
import net.gepafin.tendermanagement.model.BaseBean;
|
|
|
|
@Data
|
|
public class NotificationResponse extends BaseBean {
|
|
private Long userId;
|
|
|
|
private String title;
|
|
|
|
private String message;
|
|
|
|
private String status;
|
|
|
|
private Long companyId;
|
|
|
|
private String redirectUrl;
|
|
|
|
private String notificationType;
|
|
}
|