feat: make ClassifiedAd._price optional with default 0.00

This commit is contained in:
2026-07-26 07:19:02 -04:00
parent fb8c221ee9
commit 0b0c3802a4
2 changed files with 38 additions and 1 deletions

View File

@@ -11,4 +11,4 @@ class ClassifiedAd:
_ownerId: UserId
title: str
text: str
_price: Decimal
_price: Decimal = Decimal("0.00")