Add project files.
This commit is contained in:
18
LoadStockDbFromTrans/models/FileModel.cs
Normal file
18
LoadStockDbFromTrans/models/FileModel.cs
Normal 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; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user