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

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

import androidx.annotation.Nullable;

import java.io.Serializable;

public class Category implements Serializable {

    @Nullable
    public final String category;
    @Nullable
    public final Boolean favorite;

    public Category(@Nullable String category, @Nullable Boolean favorite) {
        this.category = category;
        this.favorite = favorite;
    }
}