9 lines
262 B
Dart
9 lines
262 B
Dart
import 'package:jmap_dart_client/jmap/account_id.dart';
|
|
import 'package:labels/model/label.dart';
|
|
|
|
abstract class LabelDatasource {
|
|
Future<List<Label>> getAllLabels(AccountId accountId);
|
|
|
|
Future<Label> createNewLabel(AccountId accountId, Label labelData);
|
|
}
|