Files
flutterApp/lib/core/data/base_model.dart
2026-01-18 20:21:14 +08:00

9 lines
239 B
Dart

import '../../features/devices/domain/entities/device_entity.dart';
abstract class BaseModel {
BaseModel.fromJson(Map<String, dynamic> json);
Map<String, dynamic> toJson();
toEntity();
BaseModel.fromEntity(DeviceEntity entity);
}