ForecastDataSource.kt 296 B

123456789101112
  1. package com.ted.weather.domain.datasource
  2. import com.ted.weather.domain.model.Forecast
  3. import com.ted.weather.domain.model.ForecastList
  4. interface ForecastDataSource {
  5. fun requestForecastByZipCode(zipCode: Long, date: Long): ForecastList?
  6. fun requestDayForecast(id: Long): Forecast?
  7. }