// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 using System.Text.Json.Serialization; using Unicorn.Web.Common; namespace Unicorn.Web.ApprovalService; /// /// Represents an event when the publication is approved. /// [Serializable] public class RequestApprovalRequest { [JsonPropertyName("property_id")] public string PropertyId { get; set; } = null!; }