a2875ea921
(cherry picked from commit 3e36cebd5cbe880f9832c62463e71979e15e1741)
7 lines
205 B
Dart
7 lines
205 B
Dart
import 'package:jmap_dart_client/jmap/account_id.dart';
|
|
import 'package:jmap_dart_client/jmap/quotas/quota.dart';
|
|
|
|
abstract class QuotasDataSource {
|
|
Future<List<Quota>> getQuotas(AccountId accountId);
|
|
}
|