This commit is contained in:
behruz-dev
2025-11-11 19:43:46 +05:00
parent 5626269999
commit c54886d586
17 changed files with 161 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
from django.db import models
from core.apps.shared.models.base import BaseModel
class ContactUs(BaseModel):
phone_number = models.CharField(max_length=20)
telegram_url = models.URLField()
def __str__(self):
return self.phone_number