12 lines
335 B
C#
12 lines
335 B
C#
namespace MoneyMap.Models.Import;
|
|
|
|
public class TransactionCsvRow
|
|
{
|
|
public DateTime Date { get; set; }
|
|
public string Transaction { get; set; } = "";
|
|
public string Name { get; set; } = "";
|
|
public string Memo { get; set; } = "";
|
|
public decimal Amount { get; set; }
|
|
public string Category { get; set; } = "";
|
|
}
|