설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

entity.ts 257B

123456789101112131415
  1. module rpgcards {
  2. export class Entity {
  3. private _id: string;
  4. public name: string;
  5. constructor(id: string) {
  6. this._id = id;
  7. this.name = "";
  8. }
  9. get id(): string {return this._id;}
  10. }
  11. }