hello-shop/src/HelloShop.ServiceDefaults/DistributedEvents/Abstractions/DistributedEvent.cs
2024-09-12 22:01:35 +08:00

25 lines
650 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
using System.Text.Json;
using System.Text.Json.Serialization;
namespace HelloShop.ServiceDefaults.DistributedEvents.Abstractions
{
public record DistributedEvent
{
public DistributedEvent()
{
Id = Guid.NewGuid();
CreationTime = DateTimeOffset.UtcNow;
}
public Guid Id { get; set; }
public DateTimeOffset CreationTime { get; set; }
[JsonExtensionData]
public Dictionary<string, JsonElement>? ExtensionData { get; set; }
}
}