浏览代码

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
     }

正在加载...
取消
保存