소스 검색

Add description to decks

crobi 9 년 전
부모
커밋
e37a12186d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2
    0
      client/src/stores/deck.ts

+ 2
- 0
client/src/stores/deck.ts 파일 보기

@@ -3,10 +3,12 @@
3 3
 module rpgcards {
4 4
     export class Deck extends Entity{
5 5
         public cards: string[];
6
+        public description: string;
6 7
 
7 8
         constructor(id:string) {
8 9
             super(id);
9 10
             this.cards = [];
11
+            this.description = "";
10 12
         }
11 13
 
12 14
     }

Loading…
취소
저장