11 lines
298 B
Dart
11 lines
298 B
Dart
import 'package:dartz/dartz.dart';
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
|
|
import '../../common/api/api_failure.dart';
|
|
|
|
part 'customer.freezed.dart';
|
|
|
|
part 'entities/customer_entity.dart';
|
|
part 'failures/customer_failure.dart';
|
|
part 'repositories/i_customer_repository.dart';
|