mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
13 lines
351 B
C#
13 lines
351 B
C#
using Volo.Abp.Application.Services;
|
|
using Volo.Abp.SettingManagement.Localization;
|
|
|
|
namespace Yi.Framework.SettingManagement.Application;
|
|
|
|
public abstract class SettingManagementAppServiceBase : ApplicationService
|
|
{
|
|
protected SettingManagementAppServiceBase()
|
|
{
|
|
LocalizationResource = typeof(AbpSettingManagementResource);
|
|
}
|
|
}
|