File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
src/WebJobs.Script.WebHost Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 1
1
// Copyright (c) .NET Foundation. All rights reserved.
2
2
// Licensed under the MIT License. See License.txt in the project root for license information.
3
3
4
+ using Newtonsoft . Json ;
5
+
4
6
namespace WebJobs . Script . WebHost
5
7
{
6
8
public class FunctionSecrets
7
9
{
10
+ [ JsonProperty ( PropertyName = "key" ) ]
8
11
public string Key { get ; set ; }
9
12
}
10
13
}
Original file line number Diff line number Diff line change 1
1
// Copyright (c) .NET Foundation. All rights reserved.
2
2
// Licensed under the MIT License. See License.txt in the project root for license information.
3
3
4
+ using Newtonsoft . Json ;
5
+
4
6
namespace WebJobs . Script . WebHost
5
7
{
6
8
public class HostSecrets
7
9
{
10
+ [ JsonProperty ( PropertyName = "masterKey" ) ]
8
11
public string MasterKey { get ; set ; }
12
+ [ JsonProperty ( PropertyName = "functionKey" ) ]
9
13
public string FunctionKey { get ; set ; }
10
14
}
11
15
}
You can’t perform that action at this time.
0 commit comments