# NotificationDetail Class
## Class Structure Overview
The class represents a notification detail with four boolean properties indicating whether email and SMS notifications are enabled for the receiver and sender. The class provides a constructor to initialize these properties. 
### Properties

| Property Name   | Type | Description                                                          |
|-----------------|------|----------------------------------------------------------------------|
| isReceiverEmail | int  | Indicates if email notification is enabled for the receiver (0 or 1) |
| isReceiverSms   | int  | Indicates if SMS notification is enabled for the receiver (0 or 1)   |
| isSenderEmail   | int  | Indicates if email notification is enabled for the sender (0 or 1)   |
| isSenderSms     | int  | Indicates if SMS notification is enabled for the sender (0 or 1)     |
