Skip to content

Commit

Permalink
fix warning nullability
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-garcia committed Mar 14, 2024
1 parent d184eb7 commit 3fc611b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sentaur.Leaderboard.Api/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ namespace Sentaur.Leaderboard.Api;

public class User
{
public string Username { get; set; }
public string Password { get; set; }
}
public string? Username { get; set; }
public string? Password { get; set; }
}

0 comments on commit 3fc611b

Please sign in to comment.