Files
irc-netcore-api/IRaCIS.Core.Application/Service/Common/Interface/IEmailNoticeConfigService.cs
T
he bbed277f8b
continuous-integration/drone/push Build is running
手动发送邮件
2026-08-27 09:59:34 +08:00

17 lines
803 B
C#

// 此代码由T4模板自动生成 byzhouhang 20210918
// 生成时间 2022-02-15 13:11:20
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
//--------------------------------------------------------------------
namespace IRaCIS.Core.Application.Contracts
{
public interface IEmailNoticeConfigService
{
Task<IResponseOutput> AddOrUpdateEmailNoticeConfig(EmailNoticeConfigAddOrEdit addOrEditEmailNoticeConfig);
Task<IResponseOutput> DeleteEmailNoticeConfig(Guid emailNoticeConfigId);
Task<PageOutput<EmailNoticeConfigView>> GetEmailNoticeConfigList(EmailNoticeConfigQuery queryEmailNoticeConfig);
Task<IResponseOutput> ManualSendEmail(ManualSendEmailCommand inDto);
}
}