9 lines
197 B
C#
9 lines
197 B
C#
using SPMS.Application.DTOs.Faq;
|
|
|
|
namespace SPMS.Application.Interfaces;
|
|
|
|
public interface IFaqService
|
|
{
|
|
Task<FaqListResponseDto> GetListAsync(string serviceCode, FaqListRequestDto request);
|
|
}
|