Welcome to mirror list, hosted at ThFree Co, Russian Federation.

models.js « src - git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ca4d897c22305873026818c17bf79737be0c4b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Password from './Model/Password/Password';
import Folder from './Model/Folder/Folder';
import Tag from './Model/Tag/Tag';
import EnhancedPassword from './Model/Password/EnhancedPassword';
import EnhancedFolder from './Model/Folder/EnhancedFolder';
import EnhancedTag from './Model/Tag/EnhancedTag';
import Server from './Model/Server/Server';
import AbstractModel from './Model/AbstractModel';
import Setting from "./Model/Setting/Setting";


export {
    AbstractModel,
    EnhancedPassword,
    EnhancedFolder,
    EnhancedTag,
    Password,
    Folder,
    Tag,
    Server,
    Setting
};