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