Skip to content

Commit

Permalink
refactor: make property required to avoid compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaVetnic committed Jan 24, 2024
1 parent ab49d41 commit 6363d66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ public void CreateMappings(Profile configuration)

public class LastLoginInformation
{
public DateTime? Time { get; set; }
public required DateTime? Time { get; set; }
}

0 comments on commit 6363d66

Please sign in to comment.