mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-17 13:12:26 +00:00
13 lines
204 B
JavaScript
13 lines
204 B
JavaScript
|
function ThreadItem( type, level, range ) {
|
||
|
this.type = type;
|
||
|
this.level = level;
|
||
|
this.range = range;
|
||
|
|
||
|
this.id = null;
|
||
|
this.replies = [];
|
||
|
}
|
||
|
|
||
|
OO.initClass( ThreadItem );
|
||
|
|
||
|
module.exports = ThreadItem;
|