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

14 lines
357 B
C#

using Sozsoft.MailQueue.Domain.Shared;
using Volo.Abp.Application.Services;
namespace Sozsoft.MailQueue.Application;
public abstract class MailQueueAppService : ApplicationService
{
protected MailQueueAppService()
{
LocalizationResource = typeof(ErpMailQueueResource);
ObjectMapperContext = typeof(ErpMailQueueModule);
}
}