19 lines
575 B
C#
19 lines
575 B
C#
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; }
|
|
|
|
}
|