Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UpcomingCardsAdapterSectionItem.java « upcomingcards « ui « deck « nextcloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11f29e9d0ecebd953640c7c285b8f80d65bc93d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package it.niedermann.nextcloud.deck.ui.upcomingcards;

import androidx.annotation.NonNull;

public class UpcomingCardsAdapterSectionItem {

    @NonNull
    private final String title;

    public UpcomingCardsAdapterSectionItem(@NonNull String title) {
        this.title = title;
    }

    @NonNull
    public String getTitle() {
        return title;
    }
}