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