// Copyright (c) HelloShop Corporation. All rights reserved. // See the license file in the project root for more information. using Dapr; using System.Text.Json.Serialization; namespace HelloShop.EventBus.Dapr { public class DaprCloudEvent(TData data) : CloudEvent(data) { /// /// CloudEvent 'pubsubname' attribute. /// [JsonPropertyName("pubsubname")] public required string PubSubName { get; init; } /// /// CloudEvent 'topic' attribute. /// [JsonPropertyName("topic")] public required string Topic { get; init; } /// /// CloudEvent 'time' attribute. /// [JsonPropertyName("time")] public required DateTimeOffset Time { get; init; } } }