/* * Copyright (C) 2016 Glucosio Foundation * * This file is part of Glucosio. * * Glucosio is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. * * Glucosio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Glucosio. If not, see <http://www.gnu.org/licenses/>. * * */ package org.glucosio.android.object; import com.google.android.gms.drive.DriveId; import java.util.Date; public class GlucosioBackup { private DriveId driveId; private Date modifiedDate; private long backupSize; public GlucosioBackup(DriveId driveId, Date modifiedDate, long backupSize) { this.driveId = driveId; this.modifiedDate = modifiedDate; this.backupSize = backupSize; } public DriveId getDriveId() { return driveId; } public void setDriveId(DriveId driveId) { this.driveId = driveId; } public Date getModifiedDate() { return modifiedDate; } public void setModifiedDate(Date modifiedDate) { this.modifiedDate = modifiedDate; } public long getBackupSize() { return backupSize; } public void setBackupSize(long backupSize) { this.backupSize = backupSize; } }