SPMS_API/SPMS.Application/Interfaces/IPushService.cs
SEAN 73de5efd84 feat: 즉시 발송 요청 API 구현 (#114)
- POST /v1/in/push/send (단건 발송)
- POST /v1/in/push/send/tag (태그 발송)
- PushService: 메시지 조회 → 변수 치환 → RabbitMQ 큐 발행
- MessageNotFound(151) 에러 코드 추가

Closes #114
2026-02-10 16:38:51 +09:00

10 lines
287 B
C#

using SPMS.Application.DTOs.Push;
namespace SPMS.Application.Interfaces;
public interface IPushService
{
Task<PushSendResponseDto> SendAsync(long serviceId, PushSendRequestDto request);
Task<PushSendResponseDto> SendByTagAsync(long serviceId, PushSendTagRequestDto request);
}