Skip to content

Commit 396cf47

Browse files
committed
add required keyword
1 parent e557996 commit 396cf47

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/ApiGatewayRouteConfig.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
{
33
public class ApiGatewayRouteConfig
44
{
5-
public string LambdaResourceName { get; set; }
6-
public string Endpoint { get; set; }
7-
public string HttpMethod { get; set; }
8-
public string Path { get; set; }
5+
public required string LambdaResourceName { get; set; }
6+
public required string Endpoint { get; set; }
7+
public required string HttpMethod { get; set; }
8+
public required string Path { get; set; }
99
}
1010
}

0 commit comments

Comments
 (0)