feat: plantilla base workspace SaaS
Some checks failed
Build Producción & Push a Harbor / test (push) Failing after 3s
Build Producción & Push a Harbor / build (push) Has been skipped
Aduanasoft/plantillas-proyectos/pipeline/head There was a failure building this commit

This commit is contained in:
2026-07-21 13:59:00 -05:00
commit bdd089954b
470 changed files with 70022 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
from pydantic import BaseModel, ConfigDict
class ItemCreate(BaseModel):
name: str
description: str | None = None
class ItemUpdate(BaseModel):
name: str | None = None
description: str | None = None
class ItemResponse(BaseModel):
model_config = ConfigDict(from_attributes=True)
id: int
name: str
description: str | None
tenant_id: int
company_id: int