Files
planka/client/src/models/index.js
Maksim Eltyshev 3714bbc06f ref: Refactoring
2022-08-04 13:31:14 +02:00

28 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,
};