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. |
||
|---|---|---|
| .. | ||
| Dtos | ||
| IAcEmailAddress.cs | ||
| IAcUser.cs | ||
| IAcUserBase.cs | ||
| IAcUserForeignKey.cs | ||
| IAcUserModelDtoMinBase.cs | ||
| IAcUserRelation.cs | ||
| IAcUserToCompany.cs | ||
| IAcUserToCompanyBase.cs | ||
| IAcUserToServiceProviderRelation.cs | ||
| IAcUserTokenBase.cs | ||
| IAcUsersRelation.cs | ||
| IEmailConfirmed.cs | ||
| IPassword.cs | ||
| README.md | ||
README.md
Users
Interfaces for user entities, covering base properties, authentication fields, company associations, relations, and foreign keys.
Key Files
IAcUserBase.cs— Core user interface withFullName,PhoneNumber,RefreshToken,RefferalId, email, password, and timestamps.IAcUser.cs— Full user interface generic over profile, company, and address types.IAcEmailAddress.cs— Defines anEmailAddressstring property with max length 150.IPassword.cs— Defines aPasswordstring property.IEmailConfirmed.cs— Defines anEmailConfirmedboolean property.IAcUserTokenBase.cs— User token interface withToken,TokenSent,TokenExpiration, andIsActive.IAcUserRelation.cs— Navigation property for entities holding aUserreference.IAcUsersRelation.cs— Navigation property forUsersandUserToServiceProviderscollections.IAcUserToCompanyBase.cs— Base user-to-company join withPermissions, user/company foreign keys.IAcUserToCompany.cs— Generic join entity withUserandCompanynavigation properties.IAcUserToServiceProviderRelation.cs— Relation linking a user to a service provider.IAcUserModelDtoMinBase.cs— Minimal user model DTO marker extendingIAcModelDtoBase.IAcUserForeignKey.cs— Foreign key contract exposingUserId(Guid).
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.