Add project files.

This commit is contained in:
2022-09-09 11:07:33 +02:00
parent b4ddfa3c2c
commit 36c28196f4
29 changed files with 1083 additions and 0 deletions

View File

@ -0,0 +1,18 @@
namespace LoadStockDbFromTrans.models;
public class FileModel
{
public DateTime Bokföringsdag { get; set; }
public DateTime Affärsdag { get; set; }
public DateTime Likviddag { get; set; }
public string Valuta { get; set; }
public string ISIN { get; set; }
public string Transaktionstyp { get; set; }
public string Beskrivning { get; set; }
public string Specifikation { get; set; }
public int Antal { get; set; }
public decimal Kurs { get; set; }
public decimal Belopp { get; set; }
public decimal Saldo { get; set; }
}