Added comprehensive README.md documentation to every project and subfolder in the solution. Each README describes the purpose, key files, structure, dependencies, and design patterns for its area. This improves codebase navigability and maintainability, and includes a maintenance note to keep docs in sync with future code changes. |
||
|---|---|---|
| .. | ||
| IAcUserDtoBase.cs | ||
| IAcUserDtoDetailBase.cs | ||
| IAcUserDtoMinBase.cs | ||
| README.md | ||
README.md
Users/Dtos
DTO interfaces for user data at different detail levels -- minimal, base, and detailed -- with generic variants for profile and company associations.
Key Files
IAcUserDtoMinBase.cs— Minimal user DTO withAffiliateId. Generic variant adds a profile relation.IAcUserDtoBase.cs— Base user DTO extending the minimal DTO. Generic variants add profile and company relations.IAcUserDtoDetailBase.cs— Detailed user DTO combiningIAcUserBasewith DTO base interfaces. Generic variants add profile, company, and address type parameters.
LLM Maintenance: If you modify code in this folder, update this README to reflect the changes. If you notice the README content does not match the current code, automatically update the README to match the code.