1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-20 05:39:43 +02:00
planka/client/src/models/index.js

26 lines
500 B
JavaScript
Raw Normal View History

2019-08-31 04:07:25 +05:00
import User from './User';
import Project from './Project';
import ProjectMembership from './ProjectMembership';
import Board from './Board';
import Label from './Label';
import List from './List';
2019-08-31 04:07:25 +05:00
import Card from './Card';
import Task from './Task';
2020-04-21 05:04:34 +05:00
import Attachment from './Attachment';
2019-08-31 04:07:25 +05:00
import Action from './Action';
import Notification from './Notification';
2020-04-21 05:04:34 +05:00
export {
User,
Project,
ProjectMembership,
Board,
Label,
List,
2020-04-21 05:04:34 +05:00
Card,
Task,
Attachment,
Action,
Notification,
};