Add class for easy control of expense records.

This commit is contained in:
Hyperling 2024-07-20 12:37:54 -07:00
parent 628f858a1d
commit 8f0b1539ec

View File

@ -0,0 +1,23 @@
package com.hyperling.expensetracker
/*class Expense {
var name: String = ""
var cost: Double = 0.0
var freq: Char = '*'
var note: String = ""
/*public Expense (val name: String, val cost: Double, val freq: Char, val note: String) {
this.name = name
this.name = name
this.name = name
this.name = name
}*/
}*/
class Expense (
var name: String = "",
var cost: Double = 0.0,
var freq: Char = '*',
var note: String = "",
) {
}