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 11// Copyright (c) .NET Foundation. All rights reserved.
22// Licensed under the MIT License. See License.txt in the project root for license information.
33
4+ using Newtonsoft . Json ;
5+
46namespace WebJobs . Script . WebHost
57{
68 public class FunctionSecrets
79 {
10+ [ JsonProperty ( PropertyName = "key" ) ]
811 public string Key { get ; set ; }
912 }
1013}
Original file line number Diff line number Diff line change 11// Copyright (c) .NET Foundation. All rights reserved.
22// Licensed under the MIT License. See License.txt in the project root for license information.
33
4+ using Newtonsoft . Json ;
5+
46namespace WebJobs . Script . WebHost
57{
68 public class HostSecrets
79 {
10+ [ JsonProperty ( PropertyName = "masterKey" ) ]
811 public string MasterKey { get ; set ; }
12+ [ JsonProperty ( PropertyName = "functionKey" ) ]
913 public string FunctionKey { get ; set ; }
1014 }
1115}
You can’t perform that action at this time.
0 commit comments