1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00
planka/client/src/models/index.js
2022-08-04 13:31:14 +02:00

27 lines
565 B
JavaScript
Executable file

import User from './User';
import Project from './Project';
import ProjectManager from './ProjectManager';
import Board from './Board';
import BoardMembership from './BoardMembership';
import Label from './Label';
import List from './List';
import Card from './Card';
import Task from './Task';
import Attachment from './Attachment';
import Activity from './Activity';
import Notification from './Notification';
export {
User,
Project,
ProjectManager,
Board,
BoardMembership,
Label,
List,
Card,
Task,
Attachment,
Activity,
Notification,
};