vkk.models
This submodule exposes all models of this Django application.
For further context, please consult the Django documentation on the model layer.
1""" 2This submodule exposes all models of this Django application. 3 4For further context, please consult the Django documentation on 5the [model layer](https://docs.djangoproject.com/#the-model-layer). 6""" 7 8from django.db import models 9from .users.models import * 10from .system.models import * 11from .workhours.models import *