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