diff --git a/src/app/shared/kanban-column.ts b/src/app/shared/kanban-column.ts
new file mode 100644
index 0000000..2ff9d1d
--- /dev/null
+++ b/src/app/shared/kanban-column.ts
@@ -0,0 +1,5 @@
+export class KanbanColumn {
+ jiraStatusName = '';
+ label = '';
+ wipLimit = 0;
+}
diff --git a/src/app/shared/team.ts b/src/app/shared/team.ts
index 8664a5d..72dc8a6 100644
--- a/src/app/shared/team.ts
+++ b/src/app/shared/team.ts
@@ -1,9 +1,15 @@
import { Member } from './member';
+import { KanbanColumn } from './kanban-column';
export class Team {
id: number = null;
name: String = '';
members: Array = [];
+ filterId: number;
+ backlogColumn: KanbanColumn = new KanbanColumn();
+ inprogressColumn: KanbanColumn = new KanbanColumn();
+ verificationColumn: KanbanColumn = new KanbanColumn();
+ doneColumn: KanbanColumn = new KanbanColumn();
isActive = false;
createdAt: String = null;
updatedAt: String = null;