Skip to content

Instantly share code, notes, and snippets.

@lomza
Created July 28, 2018 06:06
Show Gist options
  • Save lomza/5efe1cd5362df2f189e62e20c9077643 to your computer and use it in GitHub Desktop.
Save lomza/5efe1cd5362df2f189e62e20c9077643 to your computer and use it in GitHub Desktop.
interface CalendarContract {
interface Presenter : BaseMvpPresenter<CalendarContract.View> {
fun populateList(context: Context?, date: Calendar, screenLookCategory: ScreenLookCategory)
}
interface View : BaseView {
fun setViewTitle(titleMonth: Calendar)
fun setWeekLabels(weekLabels: List<String>)
fun setDatesToCalendar(dates: List<Pair<Calendar, Int?>>)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment