using System.Text.Json.Serialization; using Amazon.Lambda.APIGatewayEvents; using Shared.Models; namespace Shared; [JsonSerializable(typeof(APIGatewayHttpApiV2ProxyRequest))] [JsonSerializable(typeof(APIGatewayHttpApiV2ProxyResponse))] [JsonSerializable(typeof(List))] [JsonSerializable(typeof(Dictionary))] [JsonSerializable(typeof(Product))] [JsonSerializable(typeof(ProductWrapper))] public partial class CustomJsonSerializerContext : JsonSerializerContext { }