blob: 7ab179d46775306c3a8bf406896d3aeb16f8d823 [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 onUpdate(TodoList value);
void onDelete();
}