Skip to content

Commit

Permalink
private setter on end date
Browse files Browse the repository at this point in the history
  • Loading branch information
vbelinschi committed Sep 10, 2024
1 parent f2cf28c commit 84ddc02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@

// We must ensure this tool is installed at the same location on all developer machines.
// Be sure to use 'nvm' to manage Node.js + npm and node modules.
"FunctionAppHostPath": "C:\\Users\\XVIBE\\AppData\\Local\\AzureFunctionsTools\\Releases\\4.83.0-inprocess\\cli_x64\\func.dll"
"FunctionAppHostPath": "C:\\Program Files\\nodejs\\node_modules\\azure-functions-core-tools\\bin\\func.dll"
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ public sealed class SettlementReport

public Instant CreatedDateTime { get; init; }

public Instant? EndedDateTime { get; private set; }

public CalculationType CalculationType { get; init; }

public bool ContainsBasisData { get; init; }
Expand All @@ -47,8 +49,6 @@ public sealed class SettlementReport

public string? BlobFileName { get; private set; }

public Instant? EndedDateTime { get; set; }

public SettlementReport(
IClock clock,
Guid userId,
Expand Down

0 comments on commit 84ddc02

Please sign in to comment.