35379-vm/core/models.py
Flatlogic Bot 41cddd37ec Version 1
2025-10-31 12:28:32 +00:00

10 lines
348 B
Python

from django.db import models
class Property(models.Model):
title = models.CharField(max_length=255)
location = models.CharField(max_length=255)
price_per_night = models.DecimalField(max_digits=8, decimal_places=2)
image_url = models.URLField(max_length=1024, blank=True, null=True)
def __str__(self):
return self.title