blob: 265ef4324148d88347a8654ca7ff7060581fb20c [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.Task;
import io.v.todos.model.TodoList;
public interface TodoListListener extends ListEventListener<Task> {
void onUpdate(TodoList value);
void onDelete();
}