Changed folder structure

This commit is contained in:
2023-09-21 12:43:40 +03:00
parent dd86d669bf
commit fad1a8e284
6 changed files with 10 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
package com.faf223.expensetrackerfaf.util;
public interface IMoneyTransaction {
long getUserId();
int getAmount();
String getCategory();
}