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.
871 B
871 B
LINGYUN.Abp.MessageService.Application
Message service application layer module.
Features
- Implements application layer interfaces for message service
- Implements business logic for message service
- Supports automatic object mapping
Dependencies
Installation
- First, install the LINGYUN.Abp.MessageService.Application package to your project:
dotnet add package LINGYUN.Abp.MessageService.Application
- Add
AbpMessageServiceApplicationModuleto your module's dependency list:
[DependsOn(typeof(AbpMessageServiceApplicationModule))]
public class YourModule : AbpModule
{
}