Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillKurdyukov committed Aug 13, 2024
1 parent 24d30e8 commit 209f4a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/src/DapperExample/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ PRIMARY KEY (Id)

internal class User
{
public int Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
public int Id { get; init; }
public string Name { get; init; } = null!;
public string Email { get; init; } = null!;

public override string ToString()
{
Expand Down

0 comments on commit 209f4a6

Please sign in to comment.