SPMS_API/SPMS.Application/Interfaces/IBannerService.cs
2026-02-10 13:41:19 +09:00

9 lines
209 B
C#

using SPMS.Application.DTOs.Banner;
namespace SPMS.Application.Interfaces;
public interface IBannerService
{
Task<BannerListResponseDto> GetListAsync(string serviceCode, BannerListRequestDto request);
}