Skip to content

Commit

Permalink
add required keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
GarrettBeatty committed Dec 9, 2024
1 parent e557996 commit 396cf47
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
{
public class ApiGatewayRouteConfig
{
public string LambdaResourceName { get; set; }
public string Endpoint { get; set; }
public string HttpMethod { get; set; }
public string Path { get; set; }
public required string LambdaResourceName { get; set; }
public required string Endpoint { get; set; }
public required string HttpMethod { get; set; }
public required string Path { get; set; }
}
}

0 comments on commit 396cf47

Please sign in to comment.