mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-12 10:18:40 +00:00
21 lines
549 B
JavaScript
21 lines
549 B
JavaScript
/**
|
|
* App notification.
|
|
*
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
(function (jsOMS) {
|
|
"use strict";
|
|
|
|
/** @namespace jsOMS.Message.Notification.App */
|
|
jsOMS.Autoloader.defineNamespace('jsOMS.Message.Notification');
|
|
|
|
jsOMS.Message.Notification.NotificationMessage = function (status, title, message)
|
|
{
|
|
this.status = status;
|
|
this.title = title;
|
|
this.message = message;
|
|
};
|
|
}(window.jsOMS = window.jsOMS || {})); |