blob: d59e4acdfb4e3a7b9594218da1b2f06f6525be8e [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.todos.persistence;
import io.v.todos.TodoList;
public interface MainPersistence extends Persistence {
void addTodoList(TodoList todoList);
void deleteTodoList(String key);
void completeAllTasks(TodoList todoList);
}