-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix storage extension build (#22012)
* Fix storage extension build * Add project reference * Shadow type * Camel case
- Loading branch information
1 parent
eaf699d
commit e33bbdd
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...ge/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs/src/SubscriptionValidationResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System.Text.Json.Serialization; | ||
|
||
namespace Azure.Messaging.EventGrid.SystemEvents | ||
{ | ||
internal class SubscriptionValidationResponse | ||
{ | ||
/// <summary> Initializes a new instance of SubscriptionValidationResponse. </summary> | ||
public SubscriptionValidationResponse() | ||
{ | ||
} | ||
|
||
/// <summary> The validation response sent by the subscriber to Azure Event Grid to complete the validation of an event subscription. </summary> | ||
[JsonPropertyName("validationResponse")] | ||
public string ValidationResponse { get; set; } | ||
} | ||
} |