7 lines
92 B
TypeScript
7 lines
92 B
TypeScript
|
export class CommentEnd {
|
||
|
id: number;
|
||
|
constructor(id: number) {
|
||
|
this.id = id;
|
||
|
}
|
||
|
}
|