Files
Remever/lib/services/tickets/tickets_interface.dart
2025-04-01 22:38:36 +03:00

10 lines
298 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import 'package:remever/database/database.dart';
///
/// Интерфейс взаимодействия с билетами в коллекция
///
abstract interface class TicketsInterface {
/// Получение списка билетов
Stream<List<Collection>> watchTicketsList();
}