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.
769 B
769 B
LINGYUN.Abp.MessageService.HttpApi
Message service HTTP API module.
Features
- Provides HTTP API interfaces for message service
- Supports MVC data annotation localization
- Automatic API controller registration
Dependencies
- LINGYUN.Abp.MessageService.Application.Contracts
AbpAspNetCoreMvcModule
Installation
- First, install the LINGYUN.Abp.MessageService.HttpApi package to your project:
dotnet add package LINGYUN.Abp.MessageService.HttpApi
- Add
AbpMessageServiceHttpApiModuleto your module's dependency list:
[DependsOn(typeof(AbpMessageServiceHttpApiModule))]
public class YourModule : AbpModule
{
}