Skip to content

Commit

Permalink
Merge pull request #337 from nofrixion/MOOV-3194-Made-Dates-Settable
Browse files Browse the repository at this point in the history
Made dates settable
  • Loading branch information
sauravmaiti22 authored May 21, 2024
2 parents 9cdbd00 + 29cbc7d commit 9d0a459
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NoFrixion.MoneyMoov/Models/Rules/RuleUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ public class RuleUpdate
/// Optional start time for rule executions. If this value is set the rule will not
/// be triggered until the start time has been reached.
/// </summary>
public DateTimeOffset? StartAt { get; }
public DateTimeOffset? StartAt { get; set; }

/// <summary>
/// Optional end time for rule executions. If this value is set the rule will not
/// be triggered after the end time has been reached.
/// </summary>
public DateTimeOffset? EndAt { get; }
public DateTimeOffset? EndAt { get; set; }

/// <summary>
/// The sweep action parameters for the rule. Any changes to the sweep rule parameters
Expand Down

0 comments on commit 9d0a459

Please sign in to comment.