- POST /v1/in/message/preview 엔드포인트 추가 - MessageService: 메시지 조회 → 변수 치환 → 미리보기 데이터 반환 - IMessageService 인터페이스 정의 (향후 CRUD 확장용) Closes #120
10 lines
275 B
C#
10 lines
275 B
C#
namespace SPMS.Application.DTOs.Message;
|
|
|
|
public class MessagePreviewResponseDto
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Body { get; set; } = string.Empty;
|
|
public string? ImageUrl { get; set; }
|
|
public string? LinkUrl { get; set; }
|
|
}
|