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