Skip to content

Commit

Permalink
Fix date error
Browse files Browse the repository at this point in the history
  • Loading branch information
VibeNL committed Sep 19, 2023
1 parent 6e9b460 commit 365d34d
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions GhostfolioSidekick/FileImporter/DeGiro/DeGiroRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; }


}
}
}

0 comments on commit 365d34d

Please sign in to comment.