6 lines
124 B
Python
6 lines
124 B
Python
|
from django.db import models
|
||
|
from django.contrib.auth.models import AbstractUser
|
||
|
|
||
|
class CounterUser(AbstractUser):
|
||
|
pass
|