From f58cf050e358b4da0d7f7a5faf1353421e359189 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Mon, 25 May 2026 08:25:42 +0300 Subject: [PATCH] update dto example --- ai/backend-context.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai/backend-context.md b/ai/backend-context.md index cedaa42..f3b5ddd 100644 --- a/ai/backend-context.md +++ b/ai/backend-context.md @@ -15,7 +15,7 @@ intentionally omitted here - update this section as entities land. - Look at similar entities for reference before writing anything new - Entities: constructor with properties, getters -- DTOs: simple data containers for creation (e.g. `CreateSetDto`) +- DTOs: simple data containers for creation (e.g. `CreateElementDto`) - Repositories: interfaces that define data access - Do not write unit tests for concrete repository implementations (e.g. `Postgres*Repository`). They are exercised by e2e tests.