import 'package:equatable/equatable.dart'; class DiscountInfoModel extends Equatable { final String name; final String description; const DiscountInfoModel({ required this.name, required this.description, }); @override List get props => [name, description]; }