mirror of
https://github.com/github/codeql.git
synced 2026-06-18 03:11:07 +02:00
12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
/**
|
|
* A message.
|
|
*
|
|
* @constructor
|
|
*
|
|
* @param {string} title The title of the message.
|
|
* @param {string} text The body text of the message.
|
|
*/
|
|
function Message(title, body) {
|
|
this.title = title;
|
|
this.body = body;
|
|
} |