mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 17:58:41 +00:00
25 lines
547 B
JavaScript
25 lines
547 B
JavaScript
/**
|
|
* App notification.
|
|
*
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
export class NotificationMessage {
|
|
/**
|
|
* @constructor
|
|
*
|
|
* @param {string} status Message status
|
|
* @param {string} title Message title
|
|
* @param {string} message Message content
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
constructor(status, title, message)
|
|
{
|
|
this.status = status;
|
|
this.title = title;
|
|
this.message = message;
|
|
};
|
|
}; |