mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-12 09:58:17 +00:00
7be0cc3209
Change-Id: Id2c5324d74eccb1209ccb76768c557722c6d9400
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;
|