import 'package:hadi_hoda_flutter/features/sample/domain/entity/sample_entity.dart'; class SampleModel extends SampleEntity { const SampleModel({ super.id, }); factory SampleModel.fromJson(Map json) { return SampleModel( id: json['id'], ); } }