SPMS_API/SPMS.Application/Interfaces/IAppConfigService.cs

12 lines
355 B
C#

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