1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00
planka/client/src/models/index.js
2020-04-21 05:44:12 +05:00

25 lines
500 B
JavaScript
Executable file

import User from './User';
import Project from './Project';
import ProjectMembership from './ProjectMembership';
import Board from './Board';
import List from './List';
import Label from './Label';
import Card from './Card';
import Task from './Task';
import Attachment from './Attachment';
import Action from './Action';
import Notification from './Notification';
export {
User,
Project,
ProjectMembership,
Board,
List,
Label,
Card,
Task,
Attachment,
Action,
Notification,
};