sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Application/LanguagesAppService.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

14 lines
349 B
C#

using Sozsoft.Languages.Localization;
using Volo.Abp.Application.Services;
namespace Sozsoft.Languages;
public abstract class LanguagesAppService : ApplicationService
{
protected LanguagesAppService()
{
LocalizationResource = typeof(LanguagesResource);
ObjectMapperContext = typeof(LanguagesApplicationModule);
}
}