class SortByModel {
final String text;
final String value;
SortByModel({required this.text, required this.value});
}