@model BookQuery @using Yavsc.Models.Google.Messaging @{ ViewData["Title"] = SR["Book "+Model.PerformerProfile.ActivityCode]; } @section header{ @{ await Html.RenderPartialAsync("_ValidationScriptsPartial"); } } @section scripts{ }

@ViewData["Title"]

@SR["Your book query"]


@Html.DisplayFor(m => m.EventDate) @Html.DisplayFor(m => m.Location)

@SR["Notifications sent to its devices"]


@if (ViewBag.GooglePayload !=null) { @if (ViewBag.GooglePayload.results !=null) { @:success: @ViewBag.GooglePayload.success @:failure: @ViewBag.GooglePayload.failure
@foreach (MessageWithPayloadResponse.Result mr in ViewBag.GooglePayload.results) { @:message_id: @mr.message_id @:registration_id: @mr.registration_id @:error: @mr.error
} } }