SPMS_API/SPMS.Application/Interfaces/IAppConfigService.cs

11 lines
355 B
C#

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