blob: 0d3a5a3eab0381a8b0c91c559db53e607d9dc9aa [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.model.ListMetadata;
import io.v.todos.model.ListSpec;
public interface MainPersistence extends Persistence {
void addTodoList(ListSpec listSpec);
void deleteTodoList(String key);
void completeAllTasks(ListMetadata listMetadata);
}