7 lines
107 B
Python
7 lines
107 B
Python
from django.db import models
|
|
|
|
|
|
ROLE_CHOICES = (
|
|
('PP', 'physical person'),
|
|
('LP', 'legal person')
|
|
) |