Skip to content

Commit 9156265

Browse files
committed
Use merchant's time zone for statements.
1 parent 6bc10f4 commit 9156265

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/NoFrixion.MoneyMoov/Models/Statement/StatementHeader.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,15 @@ public class StatementHeader
8888
public IEnumerable<Transaction> Transactions { get; set; }
8989

9090
public bool IsTrustAccount { get; set; }
91+
92+
/// <summary>
93+
/// Date and time when the statement was generated.
94+
/// This will take into account the merchant's timezone.
95+
/// </summary>
96+
public DateTime GeneratedOn { get; set; }
97+
98+
/// <summary>
99+
/// The timezone used to generate the statement.
100+
/// </summary>
101+
public TimeZoneInfo GeneratedOnTimeZone { get; set; }
91102
}

0 commit comments

Comments
 (0)