SPMS_API/SPMS.Application/Interfaces/IAppConfigService.cs
2026-02-10 14:33:32 +09:00

13 lines
411 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();
Task<MaintenanceResponseDto> GetMaintenanceAsync();
}