-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #369 from nofrixion/feature/MOOV-3383-account-last…
…-txn Added LastTransaction and CreatedBy
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// ----------------------------------------------------------------------------- | ||
// Filename: LastTransaction.cs | ||
// | ||
// Description: Represents the last transaction that occurred on an account.: | ||
// | ||
// Author(s): | ||
// Donal O'Connor ([email protected]) | ||
// | ||
// History: | ||
// 01 07 2024 Donal O'Connor Created, Harcourt St, Dublin, Ireland. | ||
// | ||
// License: | ||
// Proprietary NoFrixion. | ||
// ----------------------------------------------------------------------------- | ||
|
||
#nullable disable | ||
namespace NoFrixion.MoneyMoov.Models; | ||
|
||
public class LastTransaction | ||
{ | ||
public decimal Amount { get; set; } | ||
|
||
public DateTimeOffset Date { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters