Skip to content

Commit 9f2b2c6

Browse files
committed
Fix nullable annotation for the JobDetailsDto
1 parent 46f5010 commit 9f2b2c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Hangfire.Core/Storage/Monitoring/JobDetailsDto.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class JobDetailsDto
3434
public DateTime? CreatedAt { get; set; }
3535

3636
[NotNull]
37-
public IDictionary<string, string> Properties { get; set; } = null!;
37+
public IDictionary<string, string?> Properties { get; set; } = null!;
3838

3939
[NotNull]
4040
public IList<StateHistoryDto> History { get; set; } = null!;

0 commit comments

Comments
 (0)