notification.js 187 B

123456789101112131415
  1. 'use strict';
  2. function Notification ()
  3. {
  4. }
  5. Notification.prototype.noitfyByEmail = function()
  6. {
  7. };
  8. Notification.prototype.noitfyByChat = function()
  9. {
  10. };
  11. module.exports = Notification;