You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
873 B
873 B
LINGYUN.Abp.MessageService.Domain
Message service domain layer module.
Features
- Implements message service domain logic
- Integrates object extension functionality
- Integrates caching functionality
- Integrates notification functionality
- Supports auto mapping
- Supports multi-language
Dependencies
AbpAutoMapperModuleAbpCachingModuleAbpNotificationsModule- LINGYUN.Abp.MessageService.Domain.Shared
Installation
- First, install the LINGYUN.Abp.MessageService.Domain package to your project:
dotnet add package LINGYUN.Abp.MessageService.Domain
- Add
AbpMessageServiceDomainModuleto your module's dependency list:
[DependsOn(typeof(AbpMessageServiceDomainModule))]
public class YourModule : AbpModule
{
}