SPMS_API/SPMS.Application/Interfaces/IFaqService.cs
2026-02-10 13:57:17 +09:00

9 lines
197 B
C#

using SPMS.Application.DTOs.Faq;
namespace SPMS.Application.Interfaces;
public interface IFaqService
{
Task<FaqListResponseDto> GetListAsync(string serviceCode, FaqListRequestDto request);
}