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