mirror of
https://github.com/ae-utbm/sith.git
synced 2026-06-27 02:12:40 +00:00
e3dcad62cc
* products * files * Groups * Clubs * Accounting
16 lines
306 B
Python
16 lines
306 B
Python
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"]
|