SPMS_API/SPMS.Application/Interfaces/IAppConfigService.cs

12 lines
429 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);
Task<AppSettingsResponseDto> GetAppSettingsAsync(string serviceCode);
}