2025-10-24 22:03:35 +07:00
|
|
|
import 'package:dartz/dartz.dart';
|
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
|
|
|
|
|
|
|
|
import '../../common/api/api_failure.dart';
|
|
|
|
|
|
|
|
|
|
part 'product.freezed.dart';
|
|
|
|
|
|
|
|
|
|
part 'entities/product_entity.dart';
|
2025-10-25 02:09:47 +07:00
|
|
|
part 'entities/product_quantity_entity.dart';
|
2025-10-24 22:03:35 +07:00
|
|
|
part 'failures/product_failure.dart';
|
|
|
|
|
part 'repositories/i_product_repository.dart';
|