6 lines
130 B
Dart
6 lines
130 B
Dart
|
|
part of '../customer.dart';
|
||
|
|
|
||
|
|
abstract class ICustomerRepository {
|
||
|
|
Future<Either<CustomerFailure, CustomerPoint>> getPoints();
|
||
|
|
}
|