10 lines
253 B
C#
10 lines
253 B
C#
using SPMS.Application.DTOs.AppConfig;
|
|
|
|
namespace SPMS.Application.Interfaces;
|
|
|
|
public interface IAppConfigService
|
|
{
|
|
Task<AppConfigResponseDto> GetTermsAsync(string serviceCode);
|
|
Task<AppConfigResponseDto> GetPrivacyAsync(string serviceCode);
|
|
}
|