class Expenses {
String type;
String amount;
String percentage;
Expenses({
required this.type,
required this.amount,
required this.percentage,
});
}