mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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.
21 lines
550 B
21 lines
550 B
using Autofac.Extensions.DependencyInjection;
|
|
using Volo.Abp.Autofac;
|
|
using Volo.Abp.Localization;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.ObjectMapping;
|
|
using Volo.Abp.Settings;
|
|
|
|
namespace Volo.Abp.MultiLingualObject
|
|
{
|
|
[DependsOn(
|
|
typeof(AbpAutofacModule),
|
|
typeof(AbpLocalizationModule),
|
|
typeof(AbpSettingsModule),
|
|
typeof(AbpObjectMappingModule),
|
|
typeof(AbpMultiLingualObjectModule),
|
|
typeof(AbpTestBaseModule)
|
|
)]
|
|
public class AbpMultiLingualObjectTestModule : AbpModule
|
|
{
|
|
}
|
|
}
|
|
|