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