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