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. |
||
|---|---|---|
| .. | ||
| IAcEmailMessage.cs | ||
| IAcEmailMessageBase.cs | ||
| IAcEmailMessageForeignKey.cs | ||
| IAcEmailMessageRelation.cs | ||
| IAcEmailRecipient.cs | ||
| IAcEmailRecipientBase.cs | ||
| IAcEmailRecipientsRelation.cs | ||
| IAcMessageSenderService.cs | ||
| README.md | ||
README.md
Messages
Interfaces for the email/messaging system, covering message entities, recipients, relations, and the message sender service.
Key Files
IAcEmailMessageBase.cs— Base email message withContextId,SenderId,Subject,Text,IsReaded, andContextType. ExtendsIEntityGuid,ITimeStampInfo,IAcEmailAddress.IAcEmailMessage.cs— Full email message combiningIAcEmailMessageBasewith a recipients relation.IAcEmailRecipientBase.cs— Base recipient withRecipientId,EmailMessageId, andIsReaded.IAcEmailRecipient.cs— Full recipient combining base recipient with an email message relation.IAcEmailMessageRelation.cs— Navigation property for entities holding anEmailMessagereference.IAcEmailRecipientsRelation.cs— Navigation property exposing aList<TEmailRecipient>collection.IAcEmailMessageForeignKey.cs— Foreign key contract forEmailMessageId(generic and Guid variants).IAcMessageSenderService.cs— Service interface withSendMessageAsyncfor dispatching messages.
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.