From 365d34d2f84bf02388ce62a22f76b4f3d3f4f03c Mon Sep 17 00:00:00 2001 From: VibeNL Date: Tue, 19 Sep 2023 15:09:56 +0200 Subject: [PATCH] Fix date error --- .../FileImporter/DeGiro/DeGiroRecord.cs | 39 ++++++++++--------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/GhostfolioSidekick/FileImporter/DeGiro/DeGiroRecord.cs b/GhostfolioSidekick/FileImporter/DeGiro/DeGiroRecord.cs index 96055e20..488a3cee 100644 --- a/GhostfolioSidekick/FileImporter/DeGiro/DeGiroRecord.cs +++ b/GhostfolioSidekick/FileImporter/DeGiro/DeGiroRecord.cs @@ -3,35 +3,36 @@ namespace GhostfolioSidekick.FileImporter.DeGiro { - [Delimiter(",")] - public class DeGiroRecord - { - [Format("dd-MM-yyyy")] - public DateOnly Datum { get; set; } + [Delimiter(",")] + public class DeGiroRecord + { + [Format("dd-MM-yyyy")] + public DateOnly Datum { get; set; } - public TimeOnly Tijd { get; set; } + public TimeOnly Tijd { get; set; } - public DateOnly Valutadatum { get; set; } + [Format("dd-MM-yyyy")] + public DateOnly Valutadatum { get; set; } - public string Product { get; set; } + public string Product { get; set; } - public string ISIN { get; set; } + public string ISIN { get; set; } - public string Omschrijving { get; set; } + public string Omschrijving { get; set; } - public string FX { get; set; } + public string FX { get; set; } - public string Mutatie { get; set; } + public string Mutatie { get; set; } - [Index(8)] - [CultureInfo("nl-NL")] - public decimal? Total { get; set; } + [Index(8)] + [CultureInfo("nl-NL")] + public decimal? Total { get; set; } - public string Saldo { get;set; } + public string Saldo { get; set; } - [Name("Order Id")] - public string OrderId { get; set; } + [Name("Order Id")] + public string OrderId { get; set; } - } + } }