mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-17 04:10:24 +00:00
11 lines
181 B
Python
11 lines
181 B
Python
|
|
from django.db import models
|
||
|
|
|
||
|
|
from model_utils.models import InheritanceCastModel
|
||
|
|
|
||
|
|
class InheritParent(InheritanceCastModel):
|
||
|
|
pass
|
||
|
|
|
||
|
|
class InheritChild(InheritParent):
|
||
|
|
pass
|
||
|
|
|