SPMS_API/SPMS.Application/Interfaces/IAppConfigService.cs

10 lines
253 B
C#

using SPMS.Application.DTOs.AppConfig;
namespace SPMS.Application.Interfaces;
public interface IAppConfigService
{
Task<AppConfigResponseDto> GetTermsAsync(string serviceCode);
Task<AppConfigResponseDto> GetPrivacyAsync(string serviceCode);
}