refactor: extract Models and Data into MoneyMap.Core shared library
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user