move money transaction interface

This commit is contained in:
mirrerror
2023-10-23 16:13:25 +03:00
parent 0698eb2478
commit e47f2f8df6
3 changed files with 1 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
package com.faf223.expensetrackerfaf.model;
import com.faf223.expensetrackerfaf.model.User;
public interface IMoneyTransaction {
User getUser();
int getAmount();
String getCategory();
}