chore: update coding standards to include service method argument and result wrapping, and add Tailwind CSS script to App.razor
Some checks failed
Caddy Manager CI build / docker (push) Failing after 48s

This commit is contained in:
2025-07-26 21:21:30 +07:00
parent 0beb3800b5
commit ad18782149
3 changed files with 41 additions and 34 deletions

View File

@@ -27,6 +27,10 @@ alwaysApply: true
- Use Swagger/OpenAPI for API documentation for your backend API services
- Ensure XML documentation for models and API methods for enhancing Swagger documentation
# Services implementation
- Arguments of the service methods, when exceeding 2, must be wrapped in a dedicated request record. The request record is created as a model.
- Result of the service methods must be wrapped in a dedicated result record. The result record is created as a model.
## Utils
- For JSON processing and utils, we are using Newtonsoft exclusively