We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ae2e0e commit 5c4e84cCopy full SHA for 5c4e84c
libraries/tests/e2e/functions/TestUtils/FunctionConstructProps.cs
@@ -4,10 +4,10 @@ namespace TestUtils;
4
5
public class FunctionConstructProps
6
{
7
- public Architecture Architecture;
8
- public Runtime Runtime;
9
- public string Name;
10
- public string Handler;
11
- public string SourcePath;
12
- public string DistPath;
+ public required Architecture Architecture { get; set; }
+ public required Runtime Runtime { get; set; }
+ public required string Name { get; set; }
+ public required string Handler { get; set; }
+ public required string SourcePath { get; set; }
+ public required string DistPath { get; set; }
13
}
0 commit comments