12 lines
355 B
C#
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();
|
|
}
|