Skip to content

Commit

Permalink
fix: Convert to .net 8
Browse files Browse the repository at this point in the history
  • Loading branch information
nt153133 committed Oct 11, 2024
1 parent 3069488 commit d7ef1b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Chores/Chore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ public DateTime NextCheck
}

/// <summary>
/// Gets the interval between checks.
/// Gets or sets the interval between checks.
/// </summary>
public TimeSpan CheckInterval { get; } = TimeSpan.FromMinutes(1);
public virtual TimeSpan CheckInterval { get; protected set; } = TimeSpan.FromMinutes(1);

/// <summary>
/// Gets or sets the last error message.
Expand Down

0 comments on commit d7ef1b9

Please sign in to comment.