SPMS_API/SPMS.Application/Interfaces/IMessageValidationService.cs
SEAN ce7b8b3d35 feat: 메시지 유효성 검사 서비스 구현 (#118)
- MessageValidationService: title/body/image_url/link_url/link_type/data 검증
- POST /v1/in/message/validate 엔드포인트 추가
- MessageController 기반 구성

Closes #118
2026-02-10 17:15:57 +09:00

9 lines
201 B
C#

using SPMS.Application.DTOs.Message;
namespace SPMS.Application.Interfaces;
public interface IMessageValidationService
{
MessageValidationResultDto Validate(MessageValidateRequestDto request);
}