1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-02-02 21:33:00 +00:00
nk20/apps/note/models/__init__.py

14 lines
464 B
Python
Raw Normal View History

2020-02-18 21:30:26 +01:00
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
2019-07-08 13:59:31 +02:00
# SPDX-License-Identifier: GPL-3.0-or-later
2019-07-16 12:59:11 +02:00
from .notes import Alias, Note, NoteClub, NoteSpecial, NoteUser
from .transactions import MembershipTransaction, Transaction, \
2020-02-04 01:18:03 +01:00
TransactionCategory, TransactionTemplate
2019-07-16 12:59:11 +02:00
__all__ = [
# Notes
'Alias', 'Note', 'NoteClub', 'NoteSpecial', 'NoteUser',
# Transactions
2020-02-04 01:18:03 +01:00
'MembershipTransaction', 'Transaction', 'TransactionCategory', 'TransactionTemplate',
2019-07-16 12:59:11 +02:00
]