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

ImportStatus.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: 7ae189efdbe06e46eecc5a9d9e9e3126d2f40004 (plain)
1
2
3
4
5
6
7
8
9
10
package it.niedermann.owncloud.notes.shared.model;

import java.util.Collection;
import java.util.LinkedList;

public class ImportStatus {
    public int count = 0;
    public int total = 0;
    public final Collection<Throwable> warnings = new LinkedList<>();
}