feat: add UserId value object and update ClassifiedAd to use it

This commit is contained in:
2026-07-26 07:09:37 -04:00
parent 69ab1233e6
commit fb8c221ee9
7 changed files with 57 additions and 29 deletions

View File

@@ -0,0 +1,7 @@
from dataclasses import dataclass
from uuid import UUID
@dataclass(frozen=True)
class UserId:
value: UUID