from django.contrib import admin
from .models import Building, Unit

admin.site.register(Building)
admin.site.register(Unit)