package com.avitam.bankloanapplication.model.entity;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import org.springframework.data.mongodb.core.mapping.Document;

import java.util.Date;


@Getter
@Setter
@NoArgsConstructor
@Document(collection = "Notification")
public class Notification extends BaseEntity {
    private String message;
    private String title;
    private String userId;
    private Date sentAt;
    private String type;
}
