1
0
mirror of https://github.com/ae-utbm/sith.git synced 2025-01-12 01:51:21 +00:00
Sith/accounting/schemas.py

16 lines
306 B
Python
Raw Normal View History

from ninja import ModelSchema
from accounting.models import ClubAccount, Company
class ClubAccountSchema(ModelSchema):
class Meta:
model = ClubAccount
fields = ["id", "name"]
class CompanySchema(ModelSchema):
class Meta:
model = Company
fields = ["id", "name"]