您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
123456789101112131415 |
- module rpgcards {
-
- export class Entity {
- private _id: string;
- public name: string;
-
- constructor(id: string) {
- this._id = id;
- this.name = "";
- }
-
- get id(): string {return this._id;}
- }
-
- }
|